Skip to content

Commit 70c7d8e

Browse files
cia-ranadavecheney
authored andcommitted
Fix missing comma (#11)
1 parent f17336c commit 70c7d8e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

2-benchmarking/benchmarking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ func BenchmarkFib20(b *testing.B) {
3737
}
3838
}
3939
```
40-
Benchmarks are similar to tests. The only real difference is they take a `*testing.B` rather than a `*testing.T`. Both of these types implement the `testing.TB` interface which provides crowd favorites like `Errorf()`, `Fatalf()`, and `FailNow()`
40+
Benchmarks are similar to tests. The only real difference is they take a `*testing.B` rather than a `*testing.T`. Both of these types implement the `testing.TB` interface which provides crowd favorites like `Errorf()`, `Fatalf()`, and `FailNow()`.
4141

4242
### Running a package's benchmarks
4343

0 commit comments

Comments
 (0)