diff --git a/app/sdk/README.md b/app/sdk/README.md index 5b5cd595..baa9fd9e 100644 --- a/app/sdk/README.md +++ b/app/sdk/README.md @@ -17,11 +17,11 @@ The crypto and log params are provided by implementing the [Crypto](https://gith
Persistent storage can then be provided to the SDK
-Mobile apps typically use the SqlStore interface allowing for offline use cases where most of the relational data is stored. The sql param for the offline store is provided by implementing the [SqlStore]([Crypto](https://github.com/balzack/databag/blob/sdk/app/sdk/src/store.ts) interface. +Mobile apps typically use the SqlStore interface allowing for offline use cases where most of the relational data is stored. The sql param for the offline store is provided by implementing the [SqlStore](https://github.com/balzack/databag/blob/sdk/app/sdk/src/store.ts) interface. ```initOfflineStore(sql: SqlStore): Promise``` -Browser apps typically use the WebStore interface where minimal session data is stored. The web param for the minimal online store is provided by implementing the [WebStore]([Crypto](https://github.com/balzack/databag/blob/sdk/app/sdk/src/store.ts) interface. +Browser apps typically use the WebStore interface where minimal session data is stored. The web param for the minimal online store is provided by implementing the [WebStore](https://github.com/balzack/databag/blob/sdk/app/sdk/src/store.ts) interface. ```initOnlineStore(web: WebStore): Promise```