Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
IntegralPilot authored Oct 30, 2023
1 parent d095306 commit 7d385d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ impl LogHandler for MyLogHandler {
init_with_handler(Box::new(MyLogHandler));
```

Then, simply use the `log!` macro or its varients to log messages:
Then, simply use the `log!` macro or its variants to log messages:
```rust
use breadcrumbs::{log, log_level, log_channel, LogLevel};

Expand All @@ -55,7 +55,7 @@ log_channel!("test_channel", "Test log message");
log!(LogLevel::Info, "test_channel", "Test log message");
```

Access a traceback of log messages from anywhere with the `traceback!` macro or its varients:
Access a traceback of log messages from anywhere with the `traceback!` macro or its variants:
```rust
use breadcrumbs::{traceback, traceback_channel, traceback_level, LogLevel};

Expand Down

0 comments on commit 7d385d2

Please sign in to comment.