Skip to content

Commit 7b8fd99

Browse files
authored
Merge pull request #264 from kemingy/doc_macro_semicolon
docs: add the missing semicolon for macro
2 parents 6289384 + 79f8e57 commit 7b8fd99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/macros.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ macro_rules! crate_name {
4848
///
4949
/// use std::process::Command;
5050
///
51-
/// let mut cmd = Command::new(cargo_bin!())
51+
/// let mut cmd = Command::new(cargo_bin!());
5252
/// let output = cmd.unwrap();
5353
/// ```
5454
#[macro_export]
@@ -77,7 +77,7 @@ macro_rules! cargo_bin {
7777
///
7878
/// use std::process::Command;
7979
///
80-
/// let mut cmd = cargo_bin_cmd!()
80+
/// let mut cmd = cargo_bin_cmd!();
8181
/// let output = cmd.unwrap();
8282
/// ```
8383
#[macro_export]

0 commit comments

Comments
 (0)