Skip to content

Commit 227cd09

Browse files
authored
Merge pull request #3060 from ProvableHQ/josh/max-program-size-comment
Fix `MAX_PROGRAM_SIZE` comment: KB -> kB
2 parents 94a5f55 + 5963ee7 commit 227cd09

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)