]> granicus.if.org Git - icinga2/commitdiff
Fix a couple of spelling mistakes
authorGunnar Beutner <gunnar@beutner.name>
Mon, 19 Jan 2015 14:13:36 +0000 (15:13 +0100)
committerGunnar Beutner <gunnar@beutner.name>
Mon, 19 Jan 2015 14:13:36 +0000 (15:13 +0100)
refs #8096

doc/7-configuring-icinga-2.md

index 8b27a718f328645020b6e1bd9a0bd5951445e558..2520042c487412171619460e0b6ab5d67900222d 100644 (file)
@@ -547,7 +547,7 @@ the specified value is supplied to the caller of the function:
 
     log(multiply(3, 5))
 
-In this example the `add` function we declared earlier is invoked with two arguments (3 and 5).
+In this example the `multiply` function we declared earlier is invoked with two arguments (3 and 5).
 The function computes the product of those arguments and makes the result available to the
 function's caller.
 
@@ -594,7 +594,7 @@ already exists there:
 The local scope contains variables which only exist during the invocation of the current function,
 object or apply statement. Local variables can be declared using the `var` keyword:
 
-    function multiple(a, b) {
+    function multiply(a, b) {
          var temp = a * b
          return temp
        }