Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ static getItem(key: string, [callback]: ?(error: ?Error, result: ?string) => voi

`Promise` resolving with a string value, if entry exists for given `key`, or `null` otherwise.

`Promise` can be also rejects in case of underlying storage error.
`Promise` can also be rejected in case of underlying storage error.

**Example**:

Expand Down Expand Up @@ -82,7 +82,7 @@ static setItem(key: string, value: string, [callback]: ?(error: ?Error) => void)

`Promise` resolving when the set operation is completed.

`Promise` can be also rejects in case of underlying storage error.
`Promise` can also be rejected in case of underlying storage error.

**Example**:

Expand Down