Skip to content

Commit

Permalink
Merge pull request #123 from WouterJanson/patch-1
Browse files Browse the repository at this point in the history
Add missing semicolons in README.md
  • Loading branch information
Konstantin Yakushev committed May 8, 2019
2 parents da9d8b9 + 36bff57 commit 1d97f72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ context can be created by using the following code snippet:
```
var apiContext = ApiContext.Create(ApiEnvironmentType.SANDBOX, API_KEY, DEVICE_DESCRIPTION);
apiContext.Save();
BunqContext.LoadApiContext(apiContext)
BunqContext.LoadApiContext(apiContext);
```

**Please note:** initializing your application is a heavy task, therefore, all calls in the example above except for
Expand All @@ -48,7 +48,7 @@ After saving the context, you can restore it at any time:

```
var apiContext = ApiContext.Restore(API_CONTEXT_FILE_PATH);
BunqContext.LoadApiContext(apiContext)
BunqContext.LoadApiContext(apiContext);
```

**Tip:** both saving and restoring the context can be done without any arguments. In this case the context will be saved
Expand Down

0 comments on commit 1d97f72

Please sign in to comment.