From fedc3a7b7b85f2298152ae4fc40d712cfec9ca34 Mon Sep 17 00:00:00 2001 From: Eric Huber Date: Sun, 5 Jul 2020 17:04:00 -0500 Subject: [PATCH] Escaping literal "*" ("times") to fix markdown --- docs/generators.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/generators.md b/docs/generators.md index 4c4d9319..824a0348 100644 --- a/docs/generators.md +++ b/docs/generators.md @@ -24,9 +24,9 @@ TEST_CASE("Generators") { } ``` -The `SECTION` "one" will be run 4 (2*2) times, because the outer +The `SECTION` "one" will be run 4 (2\*2) times, because the outer generator has 2 elements in it, and the inner generator also has 2 -elements in it. The `SECTION` "two" will be run 6 (2*3) times. The +elements in it. The `SECTION` "two" will be run 6 (2\*3) times. The sections will be run in order "one", "one", "two", "two", "two", "one", ... @@ -34,7 +34,7 @@ It is also possible to have multiple generators at the same level of nesting. The result is the same as when generators are inside nested sections, that is, the result will be a cartesian product of all elements. This means that in the snippet below, the test case will be -run 6 (2*3) times. +run 6 (2\*3) times. ```cpp TEST_CASE("Generators") {