From 7bcdc27ab88f9ae46b787f2ddfd9608d188e2af0 Mon Sep 17 00:00:00 2001
From: Chris Wong <lambda.fairy@gmail.com>
Date: Sat, 21 Jul 2018 21:20:41 +1200
Subject: [PATCH] Reword 0.18.1 changelog entry

---
 CHANGELOG.md               | 8 ++++----
 benchmarks/benches/maud.rs | 1 -
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3303765..0e581c0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,10 +5,10 @@
 ## [0.18.1] - 2018-07-18
 
 - [Fixed] Update to rustc 1.29.0-nightly (1ecf6929d 2018-07-16)
-- `proc_macro` has been stabilized on 1.29.0-nightly
-  (https://github.com/rust-lang/rust/pull/52081#issue-199544227) which changes
-  the features required to use maud. Replace `#![feature(proc_macro)]` in your
-  crate that uses maud and use `#![feature(use_extern_macros)]` instead.
+    - The `proc_macro` feature was recently stabilized ([rust-lang/rust#52081]). As a result of this change, you may get "unresolved import" errors after updating your Rust compiler. To fix this error, replace any `#![feature(proc_macro)]` in your crate with `#![feature(use_extern_macros)]`. See the [documentation][getting-started] for a working example.
+
+[rust-lang/rust#52081]: https://github.com/rust-lang/rust/pull/52081
+[getting-started]: https://maud.lambda.xyz/getting_started.html
 
 ## [0.18.0] - 2018-07-15
 
diff --git a/benchmarks/benches/maud.rs b/benchmarks/benches/maud.rs
index ac946c4..99d8bea 100644
--- a/benchmarks/benches/maud.rs
+++ b/benchmarks/benches/maud.rs
@@ -1,7 +1,6 @@
 #![feature(plugin, test)]
 #![feature(use_extern_macros, proc_macro_non_items)]
 
-
 extern crate maud;
 
 use maud::html;