Skip to content

Commit e4c653a

Browse files
committed
docs: fix a couple unescaped [ instances which cargo doc complains on
1 parent 9ff8288 commit e4c653a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/primitives/gf32.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const CHARS_LOWER: [char; 32] = [
5252

5353
/// Mapping from bech32 character (either case) to numeric value.
5454
///
55-
/// E.g., 'z' is CHARS_LOWER[2] and is ASCII value 122 so CHARS_INV[122] == 2
55+
/// E.g., 'z' is `CHARS_LOWER[2]` and is ASCII value 122 so `CHARS_INV[122]` == 2
5656
#[rustfmt::skip]
5757
const CHARS_INV: [i8; 128] = [
5858
-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,

0 commit comments

Comments
 (0)