From e57d8dcd81d732bd808b83cda81d87bd9c4c97c6 Mon Sep 17 00:00:00 2001 From: Bob Hoeppner <32035397+bobahop@users.noreply.github.com> Date: Thu, 21 Jul 2022 20:29:38 -0500 Subject: [PATCH] Update docs/TDD.md Co-authored-by: Isaac Good --- docs/TDD.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/TDD.md b/docs/TDD.md index 6d7c30f7..042076c7 100644 --- a/docs/TDD.md +++ b/docs/TDD.md @@ -151,7 +151,7 @@ The `stmt` parameter defines the actual code to be run and timed. The `number` parameter determines how many times the `stmt` code will be run. The `setup` parameter defines the code that is run only once to prepare for running the `stmt` code. The time for the `setup` code to run is included in the overall time. -The more iterations the `stmt` code is run, the less the `setup` time should count per iteration. +The more iterations the `stmt` code is run, the less the `setup` time will count per iteration. The `timer` parameter allows for passing in a different `Timer` than the default. The default argument for the `timer` parameter is [perf_counter][perf_counter], which should suffice. The `number` parameter defines the number of times the `stmt` code will be run.