Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 7F2F6200C7C for ; Sun, 16 Apr 2017 07:53:25 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 7E007160BA0; Sun, 16 Apr 2017 05:53:25 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id BA23F160BAF for ; Sun, 16 Apr 2017 07:53:24 +0200 (CEST) Received: (qmail 49683 invoked by uid 500); 16 Apr 2017 05:53:23 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 49600 invoked by uid 99); 16 Apr 2017 05:53:23 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 16 Apr 2017 05:53:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 88359E1892; Sun, 16 Apr 2017 05:53:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jmclean@apache.org To: commits@flex.apache.org Date: Sun, 16 Apr 2017 05:53:27 -0000 Message-Id: In-Reply-To: <8c82d045ec4148d490f6d8f39aa71d20@git.apache.org> References: <8c82d045ec4148d490f6d8f39aa71d20@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [05/12] git commit: [flex-asjs] [refs/heads/develop] - fix spelling errors and add missing semicolon archived-at: Sun, 16 Apr 2017 05:53:25 -0000 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/develop Commit: 18d62de1202587bc53b4f850ed9f23725e596d6a Parents: fe1ff66 Author: Justin Mclean Authored: Sun Apr 16 10:41:01 2017 +1000 Committer: Justin Mclean 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)