From 6fd155f8342b1cd4800c6528dcc36f729925c0d4 Mon Sep 17 00:00:00 2001 From: Michael Cousins Date: Sat, 11 May 2024 11:39:16 -0400 Subject: [PATCH] fixup: update README --- README.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index c00fa63..41aec98 100644 --- a/README.md +++ b/README.md @@ -482,13 +482,11 @@ const result = coolFunc(1, 2, 4) debug(coolFunc) // `coolFunc()` has: -// -// 2 stubbings with 0 calls -// - 0 calls: `coolFunc(1, 2, 3) => 123` -// - 0 calls: `coolFunc(4, 5, 6) => { throw [Error: oh no] }` -// -// 1 unmatched call -// - `coolFunc(1, 2, 4)` +// * 2 stubbings with 0 calls +// * Called 0 times: `(1, 2, 3) => 123` +// * Called 0 times: `(4, 5, 6) => { throw [Error: oh no] }` +// * 1 unmatched call +// * `(1, 2, 4)` ``` #### `DebugOptions`