diff --git a/style/naming-conventions.md b/style/naming-conventions.md index cb34629316..7c9c1e65e5 100644 --- a/style/naming-conventions.md +++ b/style/naming-conventions.md @@ -247,9 +247,9 @@ easily transform even the simplest code into symbolic soup. ## Constants, Values, Variable and Methods -Constant names should be in upper camel case. That is, if the member is -final, immutable and it belongs to a package object or an object, -it may be considered a constant (similar to Java's `static final` members): +Constant names should be in upper camel case. Similar to Java's `static final` +members, if the member is final, immutable and it belongs to a package +object or an object, it may be considered a constant: object Container { val MyConstant = ...