Skip to content

Commit

Permalink
3.1.16 applies for non-computed properties as well
Browse files Browse the repository at this point in the history
  • Loading branch information
cezarywojcik authored Aug 31, 2016
1 parent bdd40b9 commit 36c85fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ do {

* **3.1.15** If you have a function that takes no arguments, has no side effects, and returns some object or value, prefer using a computed property instead.

* **3.1.16** For the purpose of namespacing a set of `static` functions and/or `static` computed properties, prefer using a caseless `enum` over a `class` or a `struct`. This way, you don't have to add a `private init() { }` to the container.
* **3.1.16** For the purpose of namespacing a set of `static` functions and/or `static` properties, prefer using a caseless `enum` over a `class` or a `struct`. This way, you don't have to add a `private init() { }` to the container.

### 3.2 Access Modifiers

Expand Down

0 comments on commit 36c85fc

Please sign in to comment.