v0.3.1
diff --git a/README.md b/README.md
index d1728fb..a5dd3b1 100644
--- a/README.md
+++ b/README.md
@@ -110,7 +110,7 @@
     let fields = process_fields(&input.fields);
 
     // no need to think about emitted errors
-    // #[proc_macro_errors] will handle them for you
+    // #[proc_macro_error] will handle them for you
     //
     // just return a TokenStream as you normally would
     quote!(/* stuff */).into()
diff --git a/proc-macro-error/Cargo.toml b/proc-macro-error/Cargo.toml
index 418c187..3efff32 100644
--- a/proc-macro-error/Cargo.toml
+++ b/proc-macro-error/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "proc-macro-error"
-version = "0.3.0"
+version = "0.3.1"
 authors = ["CreepySkeleton <creepy-skeleton@yandex.ru>"]
 description = "Drop-in replacement to panics in proc-macros"
 
diff --git a/proc-macro-error/src/lib.rs b/proc-macro-error/src/lib.rs
index 7317ad5..a289806 100644
--- a/proc-macro-error/src/lib.rs
+++ b/proc-macro-error/src/lib.rs
@@ -122,7 +122,7 @@
 //!     let fields = process_fields(&input.fields);
 //!
 //!     // no need to think about emitted errors
-//!     // #[proc_macro_errors] will handle them for you
+//!     // #[proc_macro_error] will handle them for you
 //!     //
 //!     // just return a TokenStream as you normally would
 //!     quote!(/* stuff */).into()