From 8ef57d769740b0e9774bd912c1c28afdc1e418e3 Mon Sep 17 00:00:00 2001 From: Mukund Sivaraman Date: Fri, 6 Dec 2013 14:58:00 +0530 Subject: [PATCH] [3239] Expand documentation on configuration data type syntax --- doc/guide/bind10-guide.xml | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/doc/guide/bind10-guide.xml b/doc/guide/bind10-guide.xml index 6d52f42c23..e2ad687b17 100644 --- a/doc/guide/bind10-guide.xml +++ b/doc/guide/bind10-guide.xml @@ -1549,7 +1549,10 @@ Parameters: integer - A basic integer; can be set directly with config set, to any integer value. + A basic integer; can be set directly with + config set, to any integer + value. The value must not be quoted, or else, it + will be parsed as a string. @@ -1557,7 +1560,10 @@ Parameters: real - A basic floating point number; can be set directly with config set, to any floating point value. + A basic floating point number; can be set + directly with config set, to + any floating point value. The value must not be + quoted, or else, it will be parsed as a string. @@ -1565,7 +1571,12 @@ Parameters: boolean - A basic boolean value; can be set directly with config set, to either true or false. + A basic boolean value; can be set directly with + config set, to either + true or + false. The value must not be + quoted, or else, it will be parsed as a + string. Integer values are not allowed. @@ -1573,7 +1584,9 @@ Parameters: string - A basic string value; can be set directly with config set, so any string. Double quotation marks are optional. + A basic string value; can be set directly with + config set to any + string. Double quotation marks are optional.