Skip to content
Snippets Groups Projects
Commit e17606aa authored by rswindell's avatar rswindell
Browse files

Document the iniGetObject(null) behavior.

parent ad1622c2
No related branches found
No related tags found
No related merge requests found
...@@ -2878,7 +2878,7 @@ static jsSyncMethodSpec js_file_functions[] = { ...@@ -2878,7 +2878,7 @@ static jsSyncMethodSpec js_file_functions[] = {
{"iniGetObject", js_iniGetObject, 1, JSTYPE_OBJECT, JSDOCSTR("[section=<i>root</i>] [lowercase=<tt>false</tt>]") {"iniGetObject", js_iniGetObject, 1, JSTYPE_OBJECT, JSDOCSTR("[section=<i>root</i>] [lowercase=<tt>false</tt>]")
,JSDOCSTR("parse an entire section from a .ini file " ,JSDOCSTR("parse an entire section from a .ini file "
"and return all of its keys (optionally lowercased) and values as properties of an object. " "and return all of its keys (optionally lowercased) and values as properties of an object. "
"if <i>section</i> is undefined, returns keys and values from the <i>root</i> section. " "if <i>section</i> is <tt>null</tt> or <tt>undefined</tt>, returns keys and values from the <i>root</i> section. "
"Returns <i>null</i> if the specified <i>section</i> does not exist in the file or the file has not been opened.") "Returns <i>null</i> if the specified <i>section</i> does not exist in the file or the file has not been opened.")
,311 ,311
}, },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment