diff --git a/src/core.rs b/src/core.rs index 0d0961c..d47fa93 100644 --- a/src/core.rs +++ b/src/core.rs @@ -23,7 +23,9 @@ /// impl ToEString for Point { /// fn to_estring(&self) -> EString { /// let mut res = String::new(); -/// write!(res, "({},{})", self.x, self.y).ok().expect("Cannot format Point into EString"); +/// write!(res, "({},{})", self.x, self.y) +/// .ok() +/// .expect("Cannot format Point into EString"); /// EString(res) /// } /// }