Просмотр исходного кода

EAGLESIX-2695 it is easier to fix the typos now...

Tony Ennis 11 лет назад
Родитель
Сommit
a211bef4c8
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      test/lib/pipeline/expressions/LetExpression_test.js

+ 1 - 1
test/lib/pipeline/expressions/LetExpression_test.js

@@ -153,7 +153,7 @@ module.exports = {
 				}
 			},
 
-			"The Guantlet": {
+			"The Gauntlet": {
 				"example from http://docs.mongodb.org/manual/reference/operator/aggregation/let/": function () {
 					var x = Expression.parseOperand(
 						{$let: { vars: { total: { $add: [ '$price', '$tax' ] },	discounted: { $cond: { if: '$applyDiscount', then: 0.9, else: 1 } }}, in: { $multiply: [ '$$total', '$$discounted' ] }}},