Skip to content

Commit 34c3f3f

Browse files
committed
Fix clippy warning about misleading comment
1 parent c992349 commit 34c3f3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cpp_common/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ pub enum Macro {
225225
}
226226

227227
impl Parse for Macro {
228-
///! Parse the inside of a `cpp!` macro (a literal or a closure)
228+
/// Parse the inside of a `cpp!` macro (a literal or a closure)
229229
fn parse(input: ParseStream) -> Result<Self> {
230230
if input.peek(syn::token::Brace) {
231231
let content;

0 commit comments

Comments
 (0)