typo fixed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@9627 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2001-04-01 21:59:06 +00:00
parent 5fde6fcc9b
commit 873fb06d2a

View File

@ -53,7 +53,7 @@ Here is how you would typically use this class:
// another example: using default values and the full path instead of just
// key name: if the key is not found , the value 17 is returned
long value = config->Read("/LastRun/CalculatedValues/MaxValue", -1);
long value = config->Read("/LastRun/CalculatedValues/MaxValue", 17);
...
...
...