rust/hg-core/src/utils.rs
changeset 42851 ce6797ef6eab
parent 42815 5399532510ae
child 42869 62eabdf91f85
--- a/rust/hg-core/src/utils.rs	Thu Aug 22 14:31:07 2019 +0200
+++ b/rust/hg-core/src/utils.rs	Sat Aug 31 14:12:38 2019 +0900
@@ -20,8 +20,7 @@
 /// assert_eq!(
 ///     line,
 ///     b"I love writing tests!".to_vec()
-///);
-///
+/// );
 /// ```
 pub fn replace_slice<T>(buf: &mut [T], from: &[T], to: &[T])
 where