Skip to content

Commit 1d97f72

Browse files
author
Konstantin Yakushev
authored
Merge pull request #123 from WouterJanson/patch-1
Add missing semicolons in README.md
2 parents da9d8b9 + 36bff57 commit 1d97f72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ context can be created by using the following code snippet:
3838
```
3939
var apiContext = ApiContext.Create(ApiEnvironmentType.SANDBOX, API_KEY, DEVICE_DESCRIPTION);
4040
apiContext.Save();
41-
BunqContext.LoadApiContext(apiContext)
41+
BunqContext.LoadApiContext(apiContext);
4242
```
4343

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

4949
```
5050
var apiContext = ApiContext.Restore(API_CONTEXT_FILE_PATH);
51-
BunqContext.LoadApiContext(apiContext)
51+
BunqContext.LoadApiContext(apiContext);
5252
```
5353

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

0 commit comments

Comments
 (0)