Skip to content

Commit

Permalink
Fix benchmark description typos (#932)
Browse files Browse the repository at this point in the history
  • Loading branch information
aidmsu authored and NickCraver committed Feb 1, 2018
1 parent a213b2a commit 17ffdc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dapper.Tests.Performance/Benchmarks.Dapper.cs
Expand Up @@ -19,7 +19,7 @@ public Post QueryBuffered()
return _connection.Query<Post>("select * from Posts where Id = @Id", new { Id = i }, buffered: true).First();
}

[Benchmark(Description = "Query<dyanmic> (buffered)")]
[Benchmark(Description = "Query<dynamic> (buffered)")]
public dynamic QueryBufferedDynamic()
{
Step();
Expand All @@ -33,7 +33,7 @@ public Post QueryUnbuffered()
return _connection.Query<Post>("select * from Posts where Id = @Id", new { Id = i }, buffered: false).First();
}

[Benchmark(Description = "Query<dyanmic> (unbuffered)")]
[Benchmark(Description = "Query<dynamic> (unbuffered)")]
public dynamic QueryUnbufferedDynamic()
{
Step();
Expand All @@ -47,7 +47,7 @@ public Post QueryFirstOrDefault()
return _connection.QueryFirstOrDefault<Post>("select * from Posts where Id = @Id", new { Id = i });
}

[Benchmark(Description = "QueryFirstOrDefault<dyanmic>")]
[Benchmark(Description = "QueryFirstOrDefault<dynamic>")]
public dynamic QueryFirstOrDefaultDynamic()
{
Step();
Expand Down

0 comments on commit 17ffdc2

Please sign in to comment.