diff --git a/STYLEGUIDE.md b/STYLEGUIDE.md
index 6cb942d1..d574a5a3 100644
--- a/STYLEGUIDE.md
+++ b/STYLEGUIDE.md
@@ -252,22 +252,6 @@ class SomeClass
end
```
-* Avoid explicit use of `self` as the recipient of internal class or instance
- messages unless to specify a method shadowed by a variable.
- [[link](#self-messages)]
- * RuboCop rule: Style/RedundantSelf
-
-``` ruby
-class SomeClass
- attr_accessor :message
-
- def greeting(name)
- message = "Hi #{name}" # local variable in Ruby, not attribute writer
- self.message = message
- end
-end
-```
-
## Collections
* Prefer `%w` to the literal array syntax when you need an array of