Skip to content

Commit

Permalink
Tweak find/replace suggestion
Browse files Browse the repository at this point in the history
  • Loading branch information
maxdeviant committed Apr 21, 2024
1 parent a81771c commit dea81a6
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,12 @@ If you're coming from [`gleeunit`](https://hexdocs.pm/gleeunit), follow these st
| `should.be_none` | `expect.to_be_none` |
| `should.fail` | `expect.to_be_true(False)` or `panic` |

> This conversion can typically be done with a find/replace from `should.` to `expect.to_`.
This conversion can typically be done with a find/replace:

```diff
- should.
+ expect.to_
```

## Targets

Expand Down

0 comments on commit dea81a6

Please sign in to comment.