From b6521532f29da4eb20864b5dde02cdaedbb52bcf Mon Sep 17 00:00:00 2001 From: Colin Ihrig Date: Sat, 1 Oct 2022 18:25:52 -0400 Subject: [PATCH] doc: remove unnecessary leading commas There are several locations in the test_runner API docs where the optional first argument to a function was written with a leading comma. Since these are first arguments, the commas can be removed. --- doc/api/test.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/api/test.md b/doc/api/test.md index 25200f0285a2db..b05acd404a401f 100644 --- a/doc/api/test.md +++ b/doc/api/test.md @@ -484,7 +484,7 @@ same as [`it([name], { skip: true }[, fn])`][it options]. Shorthand for marking a test as `TODO`, same as [`it([name], { todo: true }[, fn])`][it options]. -## `before([, fn][, options])` +## `before([fn][, options])`