Skip to content

Commit

Permalink
feat(docs): fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Mary Perret committed Mar 27, 2021
1 parent 9f7c6fc commit 98f1e1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ let executeReaderAsync (command: SQLiteCommand) _ =

In this particular case, `System.Data.SQLite`, the most specific types are only available through the non-asynchronous API.

For instance, we use `command.ExecuteReader` instead of `command.ExecuteDbDataReader` because of the return type is the most specific one:
For instance, we use `command.ExecuteReader` instead of `command.ExecuteDbDataReader` because the return type is the most specific one:
- [`SQLiteCommand.ExecuteDbDataReader()`](https://github.com/haf/System.Data.SQLite/blob/master/System.Data.SQLite/SQLiteCommand.cs#L664-L667)
- [`SQLiteCommand.ExecuteReader()`](https://github.com/haf/System.Data.SQLite/blob/master/System.Data.SQLite/SQLiteCommand.cs#L868-L873)

Expand Down

0 comments on commit 98f1e1f

Please sign in to comment.