diff --git a/src/FBX2glTF.cpp b/src/FBX2glTF.cpp index 75c9828..076e1ba 100644 --- a/src/FBX2glTF.cpp +++ b/src/FBX2glTF.cpp @@ -237,7 +237,7 @@ int main(int argc, char* argv[]) { ->check(CLI::Range(1, 32)) ->group("Draco"); - app.add_option("--fbx-temp-dir", gltfOptions.fbxTempDir, "Temprory directory to used by FBXSDK.")->check(CLI::ExistingDirectory); + app.add_option("--fbx-temp-dir", gltfOptions.fbxTempDir, "Temporary directory to used by FBXSDK.")->check(CLI::ExistingDirectory); CLI11_PARSE(app, argc, argv); diff --git a/src/FBX2glTF.h b/src/FBX2glTF.h index 90d0035..cd0690b 100644 --- a/src/FBX2glTF.h +++ b/src/FBX2glTF.h @@ -123,6 +123,6 @@ struct GltfOptions { /** Select baked animation framerate. */ AnimationFramerateOptions animationFramerate = AnimationFramerateOptions::BAKE24; - /** Temprory directory used by FBX SDK. */ + /** Temporary directory used by FBX SDK. */ std::string fbxTempDir; };