fix: fix various typos

This commit is contained in:
Wieland Schöbl
2021-05-21 15:35:26 +02:00
parent 1d94dd5bf3
commit ad0dae46ff
16 changed files with 49 additions and 49 deletions

View File

@@ -21,7 +21,6 @@ import {Storage} from '@ionic/storage';
@Injectable()
export class StorageProvider {
/**
*
* @param storage TODO
*/
constructor(private readonly storage: Storage) {
@@ -124,7 +123,7 @@ export class StorageProvider {
/**
* Puts a value of type T into the storage using provided key
*
* @param key Unique indentifier
* @param key Unique identifier
* @param value Resource to store under the key
*/
async put<T>(key: string, value: T): Promise<T> {