From 3d90a55d90d180d8d5a008569b7d2e8d0fbf7e00 Mon Sep 17 00:00:00 2001 From: Nathan Musoke Date: Fri, 21 Jul 2017 08:14:43 +1200 Subject: [PATCH] Typo: printn! -> println! --- _posts/2017-07-20-Rust-1.19.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2017-07-20-Rust-1.19.md b/_posts/2017-07-20-Rust-1.19.md index 503b1f286..45b14863c 100644 --- a/_posts/2017-07-20-Rust-1.19.md +++ b/_posts/2017-07-20-Rust-1.19.md @@ -139,7 +139,7 @@ See the [detailed release notes][notes] for more. #### Library stabilizations The largest new library feature is the [`eprint!` and `eprintln!` macros]. -These work exactly the same as `print!` and `printn!` but instead write +These work exactly the same as `print!` and `println!` but instead write to standard error, as opposed to standard output. [`eprint!` and `eprintln!` macros]: https://github.com/rust-lang/rust/pull/41192