Gama11 9 anni fa
parent
commit
ecf3eb5fbb

+ 1 - 1
extra/CHANGES.txt

@@ -864,7 +864,7 @@
 	resolve environment variable in -cmd commands
 	added flash.Vector.indexOf and lastIndexOf
 	fixed bug in interfaces that define the method toString (Haxe/PHP)
-	fixed bug in haxe.io.BytesInput.readBytes in Flash9 (was throwing Eof if full buffer can't be readed)
+	fixed bug in haxe.io.BytesInput.readBytes in Flash9 (was throwing Eof if full buffer can't be read)
 	fixed implements/extends special classes when they are imported
 	StringBuf now uses an array for JS implementation (around same on FF, faster on IE)
 	fixed assignment of field length in anonym objects (Haxe/PHP)

+ 1 - 1
std/cpp/vm/Thread.hx

@@ -32,7 +32,7 @@ class Thread {
 	}
 
 	/**
-		Send a message to the thread queue. This message can be readed by using `readMessage`.
+		Send a message to the thread queue. This message can be read by using `readMessage`.
 	**/
 	public function sendMessage( msg : Dynamic ) {
 		untyped __global__.__hxcpp_thread_send(handle,msg);

+ 1 - 1
std/haxe/zip/Reader.hx

@@ -129,7 +129,7 @@ class Reader {
 					#if neko
 					// enter progressive mode : we use a different input which has
 					// a temporary buffer, this is necessary since we have to uncompress
-					// progressively, and after that we might have pending readed data
+					// progressively, and after that we might have pending read data
 					// that needs to be processed
 					var bufSize = 65536;
 					if( buf == null ) {

+ 1 - 1
std/neko/Web.hx

@@ -262,7 +262,7 @@ class Web {
 	/**
 		Parse the multipart data. Call `onPart` when a new part is found
 		with the part name and the filename if present
-		and `onData` when some part data is readed. You can this way
+		and `onData` when some part data is read. You can this way
 		directly save the data on hard drive in the case of a file upload.
 	**/
 	public static function parseMultipart( onPart : String -> String -> Void, onData : haxe.io.Bytes -> Int -> Int -> Void ) : Void {

+ 1 - 1
std/neko/net/ServerLoop.hx

@@ -126,7 +126,7 @@ class ServerLoop<ClientData> {
 	}
 
 	/**
-		This method is called when some data has been readed into a Client buffer.
+		This method is called when some data has been read into a Client buffer.
 		If the data can be handled, then you can return the number of bytes handled
 		that needs to be removed from the buffer. It the data can't be handled (some
 		part of the message is missing for example), returns 0.

+ 1 - 1
std/neko/vm/Thread.hx

@@ -33,7 +33,7 @@ class Thread {
 	}
 
 	/**
-		Send a message to the thread queue. This message can be readed by using `readMessage`.
+		Send a message to the thread queue. This message can be read by using `readMessage`.
 	**/
 	public function sendMessage( msg : Dynamic ) {
 		thread_send(handle,msg);

+ 1 - 1
std/php/Web.hx

@@ -319,7 +319,7 @@ class Web {
 	/**
 		Parse the multipart data. Call `onPart` when a new part is found
 		with the part name and the filename if present
-		and `onData` when some part data is readed. You can this way
+		and `onData` when some part data is read. You can this way
 		directly save the data on hard drive in the case of a file upload.
 	**/
 	public static function parseMultipart( onPart : String -> String -> Void, onData : Bytes -> Int -> Int -> Void ) : Void {