diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/rope.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rope.rs b/src/rope.rs index 01867f8..cc98422 100644 --- a/src/rope.rs +++ b/src/rope.rs @@ -3,7 +3,7 @@ use std::io::{ErrorKind, Read, Write}; use std::rc::Rc; const MAX_NODE_SIZE: usize = 1024; -const MAX_CHILDREN: usize = 5; +const MAX_CHILDREN: usize = 15; fn read(r: &mut dyn Read, buf: &mut [u8]) -> Result<usize, std::io::Error> { loop { |
