Sfoglia il codice sorgente

[doc] fix Sys.getChar documentation (closes #6139)

Simon Krajewski 8 anni fa
parent
commit
74299817f3
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1 1
      std/Sys.hx

+ 1 - 1
std/Sys.hx

@@ -126,7 +126,7 @@ extern class Sys {
 	static function programPath() : String;
 
 	/**
-		Read a single input character from the standard input (without blocking) and returns it. Setting `echo` to true will also display it on the output.
+		Read a single input character from the standard input and returns it. Setting `echo` to true will also display it on the output.
 	**/
 	static function getChar( echo : Bool ) : Int;