From: Markus Waldmueller Date: Wed, 4 Nov 2015 10:50:21 +0000 (+0100) Subject: Documentation: Fix error in Access Object Attributes at Runtime example X-Git-Tag: v2.4.1~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f79b07326cc61488cb508cf84a61be3bfde8368a;p=icinga2 Documentation: Fix error in Access Object Attributes at Runtime example fixes #10528 Signed-off-by: Michael Friedrich --- diff --git a/doc/5-advanced-topics.md b/doc/5-advanced-topics.md index fc08c563d..c5a09f19e 100644 --- a/doc/5-advanced-topics.md +++ b/doc/5-advanced-topics.md @@ -411,7 +411,7 @@ cluster state and output: if (up_count >= down_count) { return 0 //same up as down -> UP } else { - return 1 //something is broken + return 2 //something is broken } }}