Skip to content

Commit 121564e

Browse files
Merge pull request #9 from clehner/warn-semicolon
Add semicolon after warn Work around error appearing in Rust nightly 2021-01-30 (rust-lang/rust#81531, rust-lang/rust#81724)
2 parents 9b0e452 + 6c48bcb commit 121564e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/expansion/element.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ pub fn expand_element<'a, T: Send + Sync + Id, C: Send + Sync + ContextMut<T>, L
220220
if options.strict {
221221
return Err(ErrorCode::KeyExpansionFailed.into());
222222
}
223-
warn!("failed to expand key `{}`", key)
223+
warn!("failed to expand key `{}`", key);
224224
}
225225
}
226226
}

0 commit comments

Comments
 (0)