Browse Source

Fixed comment.

Lasse Öörni 13 years ago
parent
commit
d5783d284f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Engine/Core/StringUtils.h

+ 1 - 1
Engine/Core/StringUtils.h

@@ -88,7 +88,7 @@ String ToStringHex(unsigned value);
 unsigned GetStringListIndex(const String& value, const String* strings, unsigned defaultIndex, bool caseSensitive = false);
 unsigned GetStringListIndex(const String& value, const String* strings, unsigned defaultIndex, bool caseSensitive = false);
 /// Return an index to a string list corresponding to the given C string, or a default value if not found. The string list must be empty-terminated.
 /// Return an index to a string list corresponding to the given C string, or a default value if not found. The string list must be empty-terminated.
 unsigned GetStringListIndex(const char* value, const String* strings, unsigned defaultIndex, bool caseSensitive = false);
 unsigned GetStringListIndex(const char* value, const String* strings, unsigned defaultIndex, bool caseSensitive = false);
-/// Return an index to a string list corresponding to the given string, or a default value if not found. The string list must be empty-terminated.
+/// Return an index to a C string list corresponding to the given C string, or a default value if not found. The string list must be empty-terminated.
 unsigned GetStringListIndex(const char* value, const char** strings, unsigned defaultIndex, bool caseSensitive = false);
 unsigned GetStringListIndex(const char* value, const char** strings, unsigned defaultIndex, bool caseSensitive = false);
 
 
 }
 }