Skip to content

Commit

Permalink
Merge pull request #118 from kianmeng/fix-typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
Drakulix committed Feb 20, 2023
2 parents 5ee5a04 + 8401288 commit 0d7e6ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
@@ -1,7 +1,7 @@
## Unreleased
- The `new` method of loggers are now `#[must_use]` to prevent confusion when `new` is used called instead of `init`
## v0.12.0
- Replaces the semingly unmainted chrono library with the time crate.
- Replaces the semingly unmaintained chrono library with the time crate.
- Addresses through this update
- RUSTSEC-2020-0159 (chrono)
- RUSTSEC-2020-0071 (time)
Expand Down Expand Up @@ -45,7 +45,7 @@
## v0.8.0
- Switch from `term` to `termcolor` (PR #59. credits to @raybritton)
- Fix typo in docs (PR #58, credits to @anthonyjmartinez)
- Switch default padding to `Off`. Padding is annoyingly controversal, just set it to whatever you prefer, if you want it.
- Switch default padding to `Off`. Padding is annoyingly controversial, just set it to whatever you prefer, if you want it.

## v0.7.6
- Derive `Clone`,`Copy`,`PartialEq`,`Eq`,`Debug` and `Hash` for `TerminalMode`. (PR #56, credits to @panhania)
Expand Down Expand Up @@ -98,7 +98,7 @@
- Fixed building non-default feature sets

## v0.4.3
- Publically export TermLogger Error type
- Publicly export TermLogger Error type

## v0.4.2
- Removed a debug println! statement
Expand Down Expand Up @@ -131,7 +131,7 @@
- Removed some internal code duplication

## v0.2.0
- Local changes that (accidentially) made it to crates.io, but not git
- Local changes that (accidentally) made it to crates.io, but not git
- Basically a worse version of *Antoni Boucher* 0.3.0 changes
- Got noticed, when he made a Pull Request

Expand Down
2 changes: 1 addition & 1 deletion src/paris_macros/mod.rs
Expand Up @@ -14,7 +14,7 @@
/// let conn_info = Connection { port: 40, speed: 3.20 };
///
/// info!("Connected to port {} at {} Mb/s", conn_info.port, conn_info.speed);
/// info!(target: "connection_events", "Successfull connection, port: {}, speed: {}",
/// info!(target: "connection_events", "Successful connection, port: {}, speed: {}",
/// conn_info.port, conn_info.speed);
/// # }
/// ```
Expand Down

0 comments on commit 0d7e6ea

Please sign in to comment.