Skip to content

Commit

Permalink
Updated documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
irverbitskiy committed Dec 24, 2012
1 parent d1134ee commit b7c7581
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Expand Up @@ -12,7 +12,9 @@ Usage
var data = [
'[owner]',
'name=John Doe',
'organization=Acme Widgets Inc.'
'organization=Acme Widgets Inc.',
'description=This is long long \\',
' long long text.'
];
var simpleIni = new SimpleIni(function() {
Expand All @@ -22,6 +24,7 @@ Usage
if (simpleIni.hasSection('owner')) {
console.log(simpleIni.get('owner.name'));
console.log(simpleIni.get('owner.organization'));
console.log(simpleIni.get('owner.description'));
}

Installation
Expand Down

0 comments on commit b7c7581

Please sign in to comment.