瀏覽代碼

Fixed comment.

Lasse Öörni 13 年之前
父節點
當前提交
d5783d284f
共有 1 個文件被更改,包括 1 次插入1 次删除
  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);
 /// 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);
-/// 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);
 
 }