diff options
author | Trevor Stone <TrevorSStone@gmail.com> | 2016-01-03 19:03:55 -0800 |
---|---|---|
committer | Trevor Stone <TrevorSStone@gmail.com> | 2016-01-03 19:03:55 -0800 |
commit | e04ef19dab0557315938708a6bec6c245c01a1bb (patch) | |
tree | 74f0f41493608647eaf25592ae79a9a911c4a18d /README.md | |
parent | Add mobile instructions to the Readme (diff) | |
download | dedo-e04ef19dab0557315938708a6bec6c245c01a1bb.tar.gz dedo-e04ef19dab0557315938708a6bec6c245c01a1bb.tar.xz |
Fix Readme typo and line length
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -580,7 +580,7 @@ func (b *BoltDB) Close() { Database logic should be defined as methods on this wrapper struct. To initialize this struct from the native language (both platforms now sync -their local storage to the cloud. These snippits disable that functionality for the +their local storage to the cloud. These snippets disable that functionality for the database file): ####Android ```java @@ -596,7 +596,9 @@ Boltmobiledemo.BoltDB boltDB = Boltmobiledemo.NewBoltDB(path) ####iOS ```objc - (void)demo { - NSString* path = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, NSUserDomainMask, YES) objectAtIndex:0]; + NSString* path = [NSSearchPathForDirectoriesInDomains(NSLibraryDirectory, + NSUserDomainMask, + YES) objectAtIndex:0]; GoBoltmobiledemoBoltDB * demo = GoBoltmobiledemoNewBoltDB(path); [self addSkipBackupAttributeToItemAtPath:demo.path]; //Some DB Logic would go here |