Skip to content

Commit

Permalink
Fix a few missing words issues
Browse files Browse the repository at this point in the history
Sorry it took me longer than I said ;)
  • Loading branch information
LuceCarter committed Dec 15, 2017
1 parent d2d704f commit 3a8ce7d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -62,7 +62,7 @@ async Task<IEnumerable<Monkey>> GetMonkeysAsync()
}
```

MonkeyCache will never delete data unless you want to, which is pretty nice incase you are offline for long period of time. However, there are additional helpers to clean up data:
MonkeyCache will never delete data unless you want to, which is pretty nice incase you are offline for a long period of time. However, there are additional helpers to clean up data:

```csharp
//removes all data
Expand Down Expand Up @@ -90,7 +90,7 @@ Task<IEnumerable<Monkey>> GetMonkeysAsync()
}
```

Another goal of MonkeyCache is to offer a fast and native experience when storing and retrieving data from the Barrel. MonkeyCache uses a SQLite database to store all data across all platforms. This is super fast and is supported natively on each platform. In addition to the SQLite implementation is an implementation based on [LiteDB](http://www.litedb.org/) for data storage. Each have their own NuGet package, but have the same API, namespaces, and class names. This means that they can not be installed at the same time, but one or the other.
Another goal of MonkeyCache is to offer a fast and native experience when storing and retrieving data from the Barrel. MonkeyCache uses a SQLite database to store all data across all platforms. This is super fast and is supported natively on each platform. In addition to the SQLite implementation, there is an implementation based on [LiteDB](http://www.litedb.org/) for data storage. Each have their own NuGet package, but have the same API, namespaces, and class names. This means that they cannot be installed at the same time, but one or the other.

Regardless of implementation, Cache will always be stored in the default platform specific location:

Expand All @@ -107,7 +107,7 @@ Regardless of implementation, Cache will always be stored in the default platfor

## Setup

It is required that you set a ApplicationId for your application so a folder is created specifically for your app on disk. This can be done with a static string on Barrel before calling ANY method:
It is required that you set an ApplicationId for your application so a folder is created specifically for your app on disk. This can be done with a static string on Barrel before calling ANY method:

```
Barrel.ApplicationId = "your_unique_name_here";
Expand Down

0 comments on commit 3a8ce7d

Please sign in to comment.