Skip to content

Commit 03e711e

Browse files
Fix typos
1 parent 31bebb2 commit 03e711e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Unreleased
44

55
* Fix compilation errors on recent nightlies due to changes in the std
6-
[`VaList` implemenation](https://github.com/rust-lang/rust/pull/141980).
6+
[`VaList` implementation](https://github.com/rust-lang/rust/pull/141980).
77
<https://github.com/lights0123/printf-compat/pull/45>
88
* Switch to the 2024 edition.
99
<https://github.com/lights0123/printf-compat/pull/46>

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ unsafe extern "C" fn c_library_print(str: *const c_char, args: ...) -> c_int {
7777

7878
Think about what you're doing:
7979

80-
- If you're implenting `printf` *because you don't have one*, you'll want to
80+
- If you're implementing `printf` *because you don't have one*, you'll want to
8181
call it `printf` and add `#[unsafe(no_mangle)]`.
8282
- Likewise, if you're creating a custom log function for a C library and it
8383
expects to call a globally-defined function, keep `#[unsafe(no_mangle)]` and

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
//!
7474
//! Think about what you're doing:
7575
//!
76-
//! - If you're implenting `printf` *because you don't have one*, you'll want to
76+
//! - If you're implementing `printf` *because you don't have one*, you'll want to
7777
//! call it `printf` and add `#[unsafe(no_mangle)]`.
7878
//! - Likewise, if you're creating a custom log function for a C library and it
7979
//! expects to call a globally-defined function, keep `#[unsafe(no_mangle)]` and

0 commit comments

Comments
 (0)