diff --git a/README.md b/README.md
index c7ef22a..b2e7812 100644
--- a/README.md
+++ b/README.md
@@ -389,18 +389,6 @@ pairwise constructs as found in e.g. `let` and `cond`.
(:use clojure.zip))
```
-*
- Avoid single-segment namespaces.
-[[link](#no-single-segment-namespaces)]
-
- ```Clojure
- ;; good
- (ns example.ns)
-
- ;; bad
- (ns example)
- ```
-
*
Avoid the use of overly long namespaces (i.e., more than 5 segments).
[[link](#namespaces-with-5-segments-max)]