Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 6979211A9D for ; Fri, 5 Sep 2014 18:14:08 +0000 (UTC) Received: (qmail 58956 invoked by uid 500); 5 Sep 2014 18:14:07 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 58886 invoked by uid 500); 5 Sep 2014 18:14:07 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 58512 invoked by uid 99); 5 Sep 2014 18:14:07 -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, 05 Sep 2014 18:14:07 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id AF47BA0AB86; Fri, 5 Sep 2014 18:14:06 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: anis@apache.org To: commits@cordova.apache.org Date: Fri, 05 Sep 2014 18:14:23 -0000 Message-Id: In-Reply-To: <07113a0fc0c24dcca5b769b7cc625c33@git.apache.org> References: <07113a0fc0c24dcca5b769b7cc625c33@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [18/50] git commit: Fix error in comments for munge functions Fix error in comments for munge functions Project: http://git-wip-us.apache.org/repos/asf/cordova-lib/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-lib/commit/92e9e444 Tree: http://git-wip-us.apache.org/repos/asf/cordova-lib/tree/92e9e444 Diff: http://git-wip-us.apache.org/repos/asf/cordova-lib/diff/92e9e444 Branch: refs/heads/master Commit: 92e9e44456e345025060bb5f7cf5a4f86b453072 Parents: 06afe8c Author: Mark Koudritsky Authored: Fri Aug 8 11:45:16 2014 -0400 Committer: Anis Kadri Committed: Fri Sep 5 11:12:18 2014 -0700 ---------------------------------------------------------------------- cordova-lib/src/plugman/util/config-changes.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-lib/blob/92e9e444/cordova-lib/src/plugman/util/config-changes.js ---------------------------------------------------------------------- diff --git a/cordova-lib/src/plugman/util/config-changes.js b/cordova-lib/src/plugman/util/config-changes.js index 6e713f5..11765b3 100644 --- a/cordova-lib/src/plugman/util/config-changes.js +++ b/cordova-lib/src/plugman/util/config-changes.js @@ -797,7 +797,7 @@ function process_munge(obj, createParents, func, keys /* or key1, key2 .... */ ) } // All values from munge are added to base as -// base[file][selector][child] += base[file][selector][child] +// base[file][selector][child] += munge[file][selector][child] // Returns a munge object containing values that exist in munge // but not in base. function increment_munge(base, munge) { @@ -820,7 +820,7 @@ function increment_munge(base, munge) { } // Update the base munge object as -// base[file][selector][child] -= base[file][selector][child] +// base[file][selector][child] -= munge[file][selector][child] // nodes that reached zero value are removed from base and added to the returned munge // object. function decrement_munge(base, munge) {