diff --git a/code/Common/assbin_chunks.h b/code/Common/assbin_chunks.h
index 15e4af5e7..822df5198 100644
--- a/code/Common/assbin_chunks.h
+++ b/code/Common/assbin_chunks.h
@@ -37,7 +37,7 @@ The ASSBIN file format is composed of chunks to represent the hierarchical aiSce
This makes the format extensible and allows backward-compatibility with future data structure
versions. The <root>/code/assbin_chunks.h header contains some magic constants
for use by stand-alone ASSBIN loaders. Also, Assimp's own file writer can be found
-in <root>/tools/assimp_cmd/WriteDumb.cpp (yes, the 'b' is no typo ...).
+in <root>/tools/assimp_cmd/WriteDump.cpp (yes, the 'b' is no typo ...).
@verbatim
diff --git a/tools/assimp_cmd/CMakeLists.txt b/tools/assimp_cmd/CMakeLists.txt
index ef7b7f054..fcf36c356 100644
--- a/tools/assimp_cmd/CMakeLists.txt
+++ b/tools/assimp_cmd/CMakeLists.txt
@@ -54,7 +54,7 @@ ADD_EXECUTABLE( assimp_cmd
Main.cpp
Main.h
resource.h
- WriteDumb.cpp
+ WriteDump.cpp
Info.cpp
Export.cpp
)
diff --git a/tools/assimp_cmd/Main.h b/tools/assimp_cmd/Main.h
index 7a6ac942d..ecc65345d 100644
--- a/tools/assimp_cmd/Main.h
+++ b/tools/assimp_cmd/Main.h
@@ -168,7 +168,7 @@ bool ExportModel(const aiScene* pOut,
// ------------------------------------------------------------------------------
/** assimp_dump utility
- * @param params Command line parameters to 'assimp dumb'
+ * @param params Command line parameters to 'assimp dump'
* @param Number of params
* @return An #AssimpCmdError value.*/
int Assimp_Dump (
diff --git a/tools/assimp_cmd/WriteDumb.cpp b/tools/assimp_cmd/WriteDump.cpp
similarity index 99%
rename from tools/assimp_cmd/WriteDumb.cpp
rename to tools/assimp_cmd/WriteDump.cpp
index 0403f3966..67d1a0e76 100644
--- a/tools/assimp_cmd/WriteDumb.cpp
+++ b/tools/assimp_cmd/WriteDump.cpp
@@ -41,7 +41,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
---------------------------------------------------------------------------
*/
-/** @file WriteTextDumb.cpp
+/** @file WriteDump.cpp
* @brief Implementation of the 'assimp dump' utility
*/