Explorar o código

TLLoader: fix typo in comment.

Kim Kulling %!s(int64=10) %!d(string=hai) anos
pai
achega
d8d64a8422
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      code/STLLoader.cpp

+ 1 - 1
code/STLLoader.cpp

@@ -102,7 +102,7 @@ bool IsAsciiSTL(const char* buffer, unsigned int fileSize) {
 
     bool isASCII( strncmp( buffer, "solid", 5 ) == 0 );
     if( isASCII ) {
-        // A lot of importers are write solit even if the file is binary. So we have to check for ascii characters.
+        // A lot of importers are write solid even if the file is binary. So we have to check for ASCII-characters.
         if( fileSize >= 500 ) {
             isASCII = true;
             for( unsigned int i = 0; i < 500; i++ ) {