Skip to content
This repository has been archived by the owner on Jun 30, 2020. It is now read-only.

Commit

Permalink
Merge pull request #29 from gjeck/typos
Browse files Browse the repository at this point in the history
Fix some spelling errors
  • Loading branch information
groue authored Jan 10, 2020
2 parents c155a57 + 769d8ae commit 9247c9a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Documentation/Demo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Demo Application

Players defines read and write operations on the players database.

It exposes a [publisher](../../Sources/GRDBCombine/DatabasePublishersValue.swift) of HallOfFame, that changes everytime the database is modified.
It exposes a [publisher](../../Sources/GRDBCombine/DatabasePublishersValue.swift) of HallOfFame, that changes every time the database is modified.

```swift
struct HallOfFame {
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ The fetched value is published on the main queue, unless you provide a specific

#### `DatabaseWriter.writePublisher(receiveOn:updates:)`

This method returns a publisher that completes after database updates have been succesfully executed inside a database transaction.
This method returns a publisher that completes after database updates have been successfully executed inside a database transaction.

```swift
// AnyPublisher<Void, Error>
Expand All @@ -172,7 +172,7 @@ When you use a [database pool], and your app executes some database updates foll

#### `DatabaseWriter.writePublisher(receiveOn:updates:thenRead:)`

This method returns a publisher that completes after database updates have been succesfully executed inside a database transaction, and values have been subsequently fetched:
This method returns a publisher that completes after database updates have been successfully executed inside a database transaction, and values have been subsequently fetched:

```swift
// AnyPublisher<Int, Error>
Expand Down

0 comments on commit 9247c9a

Please sign in to comment.