Skip to content

Commit 5cb216b

Browse files
committed
Reword for clarity (minor improvement)
1 parent b19591b commit 5cb216b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

style/naming-conventions.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,9 @@ easily transform even the simplest code into symbolic soup.
247247

248248
## Constants, Values, Variable and Methods
249249

250-
Constant names should be in upper camel case. That is, if the member is
251-
final, immutable and it belongs to a package object or an object,
252-
it may be considered a constant (similar to Java's `static final` members):
250+
Constant names should be in upper camel case. Similar to Java's `static final`
251+
members, if the member is final, immutable and it belongs to a package
252+
object or an object, it may be considered a constant:
253253

254254
object Container {
255255
val MyConstant = ...

0 commit comments

Comments
 (0)