Skip to content

Commit 5963ee7

Browse files
committed
Fix MAX_PROGRAM_SIZE comment: KB -> kB
1 parent cf10c9d commit 5963ee7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

console/network/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ pub trait Network:
196196
const MAX_RECORD_ENTRIES: usize = Self::MIN_RECORD_ENTRIES.saturating_add(Self::MAX_DATA_ENTRIES);
197197

198198
/// The maximum program size by number of characters.
199-
const MAX_PROGRAM_SIZE: usize = 100_000; // 100 KB
199+
const MAX_PROGRAM_SIZE: usize = 100_000; // 100 kB
200200

201201
/// The maximum number of mappings in a program.
202202
const MAX_MAPPINGS: usize = 31;

0 commit comments

Comments
 (0)