From 1a55d39afd21da050891e56cab745dd9ca8baca7 Mon Sep 17 00:00:00 2001 From: Davis King Date: Sat, 30 May 2009 18:25:58 +0000 Subject: [PATCH] Minor comment cleanup. --HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403085 --- examples/config_reader_ex.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/config_reader_ex.cpp b/examples/config_reader_ex.cpp index 0bc6cae74..8aa669d42 100755 --- a/examples/config_reader_ex.cpp +++ b/examples/config_reader_ex.cpp @@ -99,9 +99,9 @@ int main() cout << cr.block("user1").block("details")["editor"] << endl; - // Finally, note that you can use the string_cast function to easily - // convert fields into non-string types. For example, the config - // file has an integer id field that could be converted into an int like so: + // Note that you can use the string_cast function to easily convert fields + // into non-string types. For example, the config file has an integer id + // field that could be converted into an int like so: int id = string_cast(cr.block("user2")["id"]); cout << "user2's id is " << id << endl;