Skip to content

Commit 62a526b

Browse files
Fix grammar and formatting in readme (#1696)
Co-authored-by: Nick Craver <[email protected]>
1 parent 60fc296 commit 62a526b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ var count = connection.Execute(@"insert MyTable(colA, colB) values (@a, @b)", fo
120120
Assert.Equal(foos.Count, count);
121121
```
122122

123-
This works for any parameter that implements IEnumerable<T> for some T.
123+
This works for any parameter that implements `IEnumerable<T>` for some T.
124124

125125
Performance
126126
-----------
@@ -187,7 +187,7 @@ Alternatively, you might prefer Frans Bouma's [RawDataAccessBencher](https://git
187187
Parameterized queries
188188
---------------------
189189

190-
Parameters are usually passed in as anonymous classes. This allow you to name your parameters easily and gives you the ability to simply cut-and-paste SQL snippets and run them in your db platform's Query analyzer.
190+
Parameters are usually passed in as anonymous classes. This allows you to name your parameters easily and gives you the ability to simply cut-and-paste SQL snippets and run them in your db platform's Query analyzer.
191191

192192
```csharp
193193
new {A = 1, B = "b"} // A will be mapped to the param @A, B to the param @B

0 commit comments

Comments
 (0)