Skip to content

Commit 79f8e57

Browse files
committed
docs: add the missing semicolon for macro
Signed-off-by: Keming <kemingy94@gmail.com>
1 parent 6289384 commit 79f8e57

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)