From c29c11c15ba672fe0a9e449a25a8c32bb451723f Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 19 Jan 2015 15:13:36 +0100 Subject: [PATCH] Fix a couple of spelling mistakes refs #8096 --- doc/7-configuring-icinga-2.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/7-configuring-icinga-2.md b/doc/7-configuring-icinga-2.md index 8b27a718f..2520042c4 100644 --- a/doc/7-configuring-icinga-2.md +++ b/doc/7-configuring-icinga-2.md @@ -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 } -- 2.40.0