From b556fceef021eaec54e8ea4364f861489a331995 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Wed, 18 Jan 2023 08:34:35 -0500 Subject: [PATCH] spelling: custom Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- includes/assimp/Importer.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/assimp/Importer.hpp b/includes/assimp/Importer.hpp index 4c01367..94a5923 100644 --- a/includes/assimp/Importer.hpp +++ b/includes/assimp/Importer.hpp @@ -107,7 +107,7 @@ namespace Assimp { * If you need the Importer to do custom file handling to access the files, * implement IOSystem and IOStream and supply an instance of your custom * IOSystem implementation by calling SetIOHandler() before calling ReadFile(). -* If you do not assign a custion IO handler, a default handler using the +* If you do not assign a custom IO handler, a default handler using the * standard C++ IO logic will be used. * * @note One Importer instance is not thread-safe. If you use multiple @@ -291,10 +291,10 @@ public: // ------------------------------------------------------------------- /** Supplies a custom IO handler to the importer to use to open and - * access files. If you need the importer to use custion IO logic to + * access files. If you need the importer to use custom IO logic to * access the files, you need to provide a custom implementation of * IOSystem and IOFile to the importer. Then create an instance of - * your custion IOSystem implementation and supply it by this function. + * your custom IOSystem implementation and supply it by this function. * * The Importer takes ownership of the object and will destroy it * afterwards. The previously assigned handler will be deleted.