You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2017/04/21 16:35:39 UTC

[15/43] git commit: [flex-asjs] [refs/heads/dual] - fix spelling errors and add missing semicolon

fix spelling errors and add missing semicolon


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/18d62de1
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/18d62de1
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/18d62de1

Branch: refs/heads/dual
Commit: 18d62de1202587bc53b4f850ed9f23725e596d6a
Parents: fe1ff66
Author: Justin Mclean <jm...@apache.org>
Authored: Sun Apr 16 10:41:01 2017 +1000
Committer: Justin Mclean <jm...@apache.org>
Committed: Sun Apr 16 10:41:01 2017 +1000

----------------------------------------------------------------------
 .../src/main/flex/org/apache/flex/net/URLBinaryLoader.as     | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/18d62de1/frameworks/projects/Network/src/main/flex/org/apache/flex/net/URLBinaryLoader.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/Network/src/main/flex/org/apache/flex/net/URLBinaryLoader.as b/frameworks/projects/Network/src/main/flex/org/apache/flex/net/URLBinaryLoader.as
index 5785c62..326ccbe 100644
--- a/frameworks/projects/Network/src/main/flex/org/apache/flex/net/URLBinaryLoader.as
+++ b/frameworks/projects/Network/src/main/flex/org/apache/flex/net/URLBinaryLoader.as
@@ -72,7 +72,7 @@ package org.apache.flex.net
         public var bytesLoaded:uint = 0;
         
 		/**
-		 *  The total number of bytes (if avaailable).
+		 *  The total number of bytes (if available).
 		 *  
 		 *  @langversion 3.0
 		 *  @playerversion Flash 10.2
@@ -143,7 +143,7 @@ package org.apache.flex.net
         }
         
 		/**
-		 *  Cancels the URL request
+		 *  Cancels the URL request.
 		 *  
 		 *  @langversion 3.0
 		 *  @playerversion Flash 10.2
@@ -153,7 +153,7 @@ package org.apache.flex.net
         public function close():void
         {
             stream.close();
-			//TODO do we need a callback for camceling?
+			//TODO do we need a callback for canceling?
         }
         
         private function completeHandler(event:Event):void
@@ -178,7 +178,7 @@ package org.apache.flex.net
         
         private function progressHandler(event:ProgressEvent):void
         {
-            this.bytesLoaded = event.current
+            this.bytesLoaded = event.current;
             this.bytesTotal = event.total;
             dispatchEvent(event);
 			if(onProgress)