Skip to content

Commit c31b4fa

Browse files
committed
Fix comment error.
1 parent a2f10c4 commit c31b4fa

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/abi.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ static FOO: u32 = 0;
2727
#[allow(dead_code)]
2828
static BAR: u32 = 0;
2929

30-
// This is kept because it is referenced by a public, reachable function:
30+
// This is kept because it is publicly reachable:
3131
pub static BAZ: u32 = 0;
3232

33+
// This is kept because it is referenced by a public, reachable function:
3334
static QUUX: u32 = 0;
3435

3536
pub fn quux() -> &'static u32 {

0 commit comments

Comments
 (0)