Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7E9167CD for ; Fri, 24 Aug 2012 21:57:40 +0000 (UTC) Received: (qmail 968 invoked by uid 500); 24 Aug 2012 21:57:39 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 880 invoked by uid 500); 24 Aug 2012 21:57:39 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 586 invoked by uid 99); 24 Aug 2012 21:57:39 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 24 Aug 2012 21:57:39 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D78001FD32; Fri, 24 Aug 2012 21:57:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: anis@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [11/50] [abbrv] js commit: Spelling: expectation, implementation, anonymous, combination, asynchronous Message-Id: <20120824215738.D78001FD32@tyr.zones.apache.org> Date: Fri, 24 Aug 2012 21:57:38 +0000 (UTC) Spelling: expectation, implementation, anonymous, combination, asynchronous Project: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/commit/03369e83 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/tree/03369e83 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/diff/03369e83 Branch: refs/heads/master Commit: 03369e83bce9518a1a88056722a576deb861fe54 Parents: f9b2fbc Author: Josh Soref Authored: Tue Aug 14 17:38:47 2012 -0400 Committer: Anis Kadri Committed: Fri Aug 24 13:50:03 2012 -0700 ---------------------------------------------------------------------- thirdparty/jasmine/jasmine.js | 12 ++++++------ 1 files changed, 6 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cordova-js/blob/03369e83/thirdparty/jasmine/jasmine.js ---------------------------------------------------------------------- diff --git a/thirdparty/jasmine/jasmine.js b/thirdparty/jasmine/jasmine.js index c3d2dc7..e917972 100644 --- a/thirdparty/jasmine/jasmine.js +++ b/thirdparty/jasmine/jasmine.js @@ -161,7 +161,7 @@ jasmine.isA_ = function(typeName, value) { }; /** - * Pretty printer for expecations. Takes any object and turns it into a human-readable string. + * Pretty printer for expectations. Takes any object and turns it into a human-readable string. * * @param value {Object} an object to be outputted * @returns {String} @@ -183,7 +183,7 @@ jasmine.isDomNode = function(obj) { }; /** - * Returns a matchable 'generic' object of the class type. For use in expecations of type when values don't matter. + * Returns a matchable 'generic' object of the class type. For use in expectations of type when values don't matter. * * @example * // don't care about which function is passed in, as long as it's a function @@ -197,7 +197,7 @@ jasmine.any = function(clazz) { }; /** - * Jasmine Spies are test doubles that can act as stubs, spies, fakes or when used in an expecation, mocks. + * Jasmine Spies are test doubles that can act as stubs, spies, fakes or when used in an expectation, mocks. * * Spies should be created in test setup, before expectations. They can then be checked, using the standard Jasmine * expectation syntax. Spies can be checked if they were called or not and what the calling params were. @@ -278,7 +278,7 @@ jasmine.Spy = function(name) { }; /** - * Tells a spy to call through to the actual implemenatation. + * Tells a spy to call through to the actual implementation. * * @example * var foo = { @@ -341,7 +341,7 @@ jasmine.Spy.prototype.andThrow = function(exceptionMsg) { * // defining a spy from scratch: foo() calls the function baz * var foo = jasmine.createSpy('spy on foo').andCall(baz); * - * // defining a spy on an existing property: foo.bar() calls an anonymnous function + * // defining a spy on an existing property: foo.bar() calls an anonymous function * spyOn(foo, 'bar').andCall(function() { return 'baz';} ); * * @param {Function} fakeFunc @@ -500,7 +500,7 @@ var expect = function(actual) { if (isCommonJS) exports.expect = expect; /** - * Defines part of a jasmine spec. Used in cominbination with waits or waitsFor in asynchrnous specs. + * Defines part of a jasmine spec. Used in combination with waits or waitsFor in asynchronous specs. * * @param {Function} func Function that defines part of a jasmine spec. */