From 5e8c3daa49b4eaff936c9cf436deefb590ff6729 Mon Sep 17 00:00:00 2001 From: Leslie Date: Tue, 6 Aug 2019 10:50:37 +0800 Subject: [PATCH] Typo --- src/FBX2glTF.cpp | 2 +- src/FBX2glTF.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; };