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

Fix some spelling errors #29

Merged
merged 1 commit into from
Jan 10, 2020
Merged
Show file tree
Hide file tree
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
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