diff options
| -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 351ced9..e7e62c8 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 = 15; +const MAX_CHILDREN: usize = 5; fn read(r: &mut dyn Read, buf: &mut [u8]) -> Result<usize, std::io::Error> { loop { |
