Skip to content

Commit

Permalink
docs typo
Browse files Browse the repository at this point in the history
  • Loading branch information
mgravell committed Nov 15, 2023
1 parent 0ea03d8 commit fa468a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/gettingstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ To get the full benefit of the analyzer tools, make sure that it knows which SQL
change our example to use `SqlConnection`:

``` csharp
public static Product GetProduct(DbConnection connection, int productId) => connection.QueryFirst<Product>(
public static Product GetProduct(SqlConnection connection, int productId) => connection.QueryFirst<Product>(
"select * from Production.Product where ProductId=@productId", new { productId });
```

Expand Down

0 comments on commit fa468a5

Please sign in to comment.