Skip to content

Commit 2afce94

Browse files
authored
Merge pull request #948 from ynakao/fix
Add missing semicolons after assert macros in rust.snippets
2 parents 9462201 + 3c908c5 commit 2afce94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

snippets/rust.snippets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,6 @@ snippet chan "Declare (Sender, Receiver) pair of asynchronous channel()"
188188
let (${1:tx}, ${2:rx}): (Sender<${3:i32}>, Receiver<${4:i32}>) = channel();
189189
# Testing
190190
snippet as "assert!"
191-
assert!(${1:predicate})
191+
assert!(${1:predicate});
192192
snippet ase "assert_eq!"
193-
assert_eq!(${1:expected}, ${2:actual})
193+
assert_eq!(${1:expected}, ${2:actual});

0 commit comments

Comments
 (0)