Typo in lazy-static readme
diff --git a/examples/lazy-static/README.md b/examples/lazy-static/README.md
index 611c055..bc64585 100644
--- a/examples/lazy-static/README.md
+++ b/examples/lazy-static/README.md
@@ -10,7 +10,7 @@
crates.io.
```rust
-lazy_static {
+lazy_static! {
static ref USERNAME: Regex = Regex::new("^[a-z0-9_-]{3,16}$").unwrap();
}
```
@@ -30,8 +30,8 @@
| ^^^
```
-And if you try to lazily initialize `() = ()`, the macro will outright refuse
-the compile it for you.
+And if you try to lazily initialize `() = ()`, the macro will outright refuse to
+compile it for you.
```
error: I can't think of a legitimate use for lazily initializing the value `()`