diff options
-rw-r--r-- | Doc/lib/libcfgparser.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libcfgparser.tex b/Doc/lib/libcfgparser.tex index 1f33df4..ad4bbb3 100644 --- a/Doc/lib/libcfgparser.tex +++ b/Doc/lib/libcfgparser.tex @@ -217,10 +217,10 @@ A convenience method which coerces the \var{option} in the specified \begin{methoddesc}{getboolean}{section, option} A convenience method which coerces the \var{option} in the specified \var{section} to a Boolean value. Note that the accepted values -for the option are \code{1}, \code{yes}, \code{true}, and \code{on}, -which cause this method to return true, and \code{0}, \code{no}, -\code{false}, and \code{off}, which cause it to return false. These -values are checked in a case-insensitive manner. Any other value will +for the option are \code{"1"}, \code{"yes"}, \code{"true"}, and \code{"on"}, +which cause this method to return \code{True}, and \code{"0"}, \code{"no"}, +\code{"false"}, and \code{"off"}, which cause it to return \code{False}. These +string values are checked in a case-insensitive manner. Any other value will cause it to raise \exception{ValueError}. \end{methoddesc} |