Skip to content

Commit

Permalink
docs: replace "some" wording in README.md file
Browse files Browse the repository at this point in the history
Signed-off-by: Alfi Maulana <alfi.maulana.f@gmail.com>
  • Loading branch information
threeal committed Oct 22, 2024
1 parent 9b4b2ac commit 603b135
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,8 @@ It formats the message by concatenating all the lines into a single message. If
#### Example

```cmake
set(COMMAND "some_command arg0 arg1 arg2")
set(REASON "some reason")
set(COMMAND "cmd arg0 arg1 arg2")
set(REASON "unknown reason")
fail("something happened when executing" COMMAND "because of" REASON)
```
Expand All @@ -138,9 +138,9 @@ The above example throws a fatal error message formatted as follows:

```
something happened when executing:
some_command arg0 arg1 arg2
cmd arg0 arg1 arg2
because of:
some reason
unknown reason
```

### `assert`
Expand Down

0 comments on commit 603b135

Please sign in to comment.