Skip to content

Commit 690f9d8

Browse files
committed
Fix typos in 3348
1 parent 321d8e4 commit 690f9d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

text/3348-c-str-literal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Interactions with string related macros:
5858
The trivial implementation of using `concat!($s, "\0")` is problematic for several reasons, including non-string input and embedded nul bytes.
5959
(The unstable `concat_bytes!()` solves some of the problems.)
6060

61-
The popular [`cstr` crate](https://crates.io/crates/cstr) is a proc macro to work around the limiations of a `macro_rules` implementation, but that also has many downsides.
61+
The popular [`cstr` crate](https://crates.io/crates/cstr) is a proc macro to work around the limitations of a `macro_rules` implementation, but that also has many downsides.
6262

6363
Even if we had the right language features for a trivial correct implementation, there are many code bases where C strings are the primary form of string,
6464
making `cstr!("..")` syntax quite cumbersome.

0 commit comments

Comments
 (0)