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`