aboutsummaryrefslogtreecommitdiffstats
path: root/src/rope.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/rope.rs')
-rw-r--r--src/rope.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rope.rs b/src/rope.rs
index 7d00dcd..25da1fc 100644
--- a/src/rope.rs
+++ b/src/rope.rs
@@ -124,7 +124,7 @@ impl Rope {
}
}
- fn concat(&self, other: &Rope) -> Rope {
+ pub fn concat(&self, other: &Rope) -> Rope {
if self.len() == 0 {
return other.clone();
}