瀏覽代碼

Remove character ranges (#7557)

RblSb 7 年之前
父節點
當前提交
ccd7dbdd49
共有 1 個文件被更改,包括 0 次插入4 次删除
  1. 0 4
      std/String.hx

+ 0 - 4
std/String.hx

@@ -46,15 +46,11 @@ extern class String {
 
 	/**
 		Returns a String where all characters of `this` String are upper case.
-
-		Affects the characters `a-z`. Other characters remain unchanged.
 	**/
 	function toUpperCase() : String;
 
 	/**
 		Returns a String where all characters of `this` String are lower case.
-
-		Affects the characters `A-Z`. Other characters remain unchanged.
 	**/
 	function toLowerCase() : String;