From 0a6a174e549b78e0e3574c0837f863a4b50e6b89 Mon Sep 17 00:00:00 2001 From: Philipp Oppermann Date: Tue, 24 Nov 2015 00:18:32 +0100 Subject: [PATCH] Fix broken markdown link --- posts/2015-10-23-printing-to-screen.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posts/2015-10-23-printing-to-screen.md b/posts/2015-10-23-printing-to-screen.md index 269e3bb8..71e57595 100644 --- a/posts/2015-10-23-printing-to-screen.md +++ b/posts/2015-10-23-printing-to-screen.md @@ -296,7 +296,7 @@ To resolve it, we could use a [mutable static]. But then every read and write to [mutable static]: https://doc.rust-lang.org/book/const-and-static.html#mutability [remove static mut]: https://internals.rust-lang.org/t/pre-rfc-remove-static-mut/1437 -But what are the alternatives? We could try to use a cell type like [RefCell] or even [UnsafeCell] to provide [interior mutability]. But these types aren't [Sync] (with good reason), so we can't use them in statics. +But what are the alternatives? We could try to use a cell type like [RefCell] or even [UnsafeCell] to provide [interior mutability]. But these types aren't [Sync] \(with good reason), so we can't use them in statics. [RefCell]: https://doc.rust-lang.org/nightly/core/cell/struct.RefCell.html [UnsafeCell]: https://doc.rust-lang.org/nightly/core/cell/struct.UnsafeCell.html