Skip to content

Commit e18043d

Browse files
Fix documentation
1 parent 1115cdb commit e18043d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

samples/DemoApp.DataAccessLayer.Tests/CustomerRepositoryTest.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public CustomerRepositoryTest(SqlServerDatabaseInitializer initializer)
3030
// - Here we force to set the ID of the customer to 15.
3131
this.database.InsertInto("Customer", disableIdentityInsert: true, new { Id = 15, FirstName = "Marcel", LastName = "DUPONT", Revenue = 4852.45 });
3232

33-
// - Here, to simplify the syntaxe (recommanded approach) we use an extension method in the unit tests project.
33+
// - Here, to simplify the syntax (recommanded approach) we use an extension method in the unit tests project.
3434
// Using extension methods, make the code more readable.
3535
// Also, we recommand to force to set the IDENTITY column values explicit to avoid
3636
// to update lot of code if you delete some rows later...

0 commit comments

Comments
 (0)