From 2dfbc083c518ce591610ec619127bc8441615df9 Mon Sep 17 00:00:00 2001 From: Sequoia McDowell Date: Mon, 10 Feb 2014 15:57:27 -0500 Subject: docs(concepts): Remove pointless `* 1`s Closes #6206 --- docs/content/guide/concepts.ngdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index 9581514d..4c870804 100644 --- a/docs/content/guide/concepts.ngdoc +++ b/docs/content/guide/concepts.ngdoc @@ -120,7 +120,7 @@ different currencies and also pay the invoice. return this.convertCurrency(this.qty * this.cost, this.inCurr, outCurr); }; this.convertCurrency = function convertCurrency(amount, inCurr, outCurr) { - return amount * this.usdToForeignRates[outCurr] * 1 / this.usdToForeignRates[inCurr]; + return amount * this.usdToForeignRates[outCurr] / this.usdToForeignRates[inCurr]; }; this.pay = function pay() { window.alert("Thanks!"); @@ -207,7 +207,7 @@ Let's refactor our example and move the currency conversion into a service in an }; function convert(amount, inCurr, outCurr) { - return amount * usdToForeignRates[outCurr] * 1 / usdToForeignRates[inCurr]; + return amount * usdToForeignRates[outCurr] / usdToForeignRates[inCurr]; } }); @@ -336,7 +336,7 @@ The following example shows how this is done with Angular: }; function convert(amount, inCurr, outCurr) { - return amount * usdToForeignRates[outCurr] * 1 / usdToForeignRates[inCurr]; + return amount * usdToForeignRates[outCurr] / usdToForeignRates[inCurr]; } function refresh() { -- cgit v1.2.3