]> git.lizzy.rs Git - rust.git/commitdiff
Fix tidy error
authorWilliam Brown <william@blackhats.net.au>
Wed, 19 Dec 2018 09:09:54 +0000 (19:09 +1000)
committerWilliam Brown <william@blackhats.net.au>
Wed, 19 Dec 2018 09:09:54 +0000 (19:09 +1000)
src/libcore/mem.rs

index 7492cf4c5ed327c9b4b549146924abe7372d26c6..9d1f5ce40357065088c732d2c4266cdc7596c1c8 100644 (file)
@@ -614,7 +614,8 @@ pub unsafe fn zeroed<T>() -> T {
 ///     }
 /// }
 /// // Forget the data. If this is allowed to drop, you may see a crash such as:
-/// // 'mem_uninit_test(2457,0x7fffb55dd380) malloc: *** error for object 0x7ff3b8402920: pointer being freed was not allocated'
+/// // 'mem_uninit_test(2457,0x7fffb55dd380) malloc: *** error for object
+/// // 0x7ff3b8402920: pointer being freed was not allocated'
 /// mem::forget(data);
 /// ```
 ///