From 5cb216b8af920b2565c4966271d1a55f8e1586aa Mon Sep 17 00:00:00 2001 From: solimant Date: Sat, 2 Apr 2016 14:32:37 -0700 Subject: [PATCH] Reword for clarity (minor improvement) --- style/naming-conventions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 = ...