From 40e95fef98987c82b902590378d8d69207d368a4 Mon Sep 17 00:00:00 2001 From: Hina Nakahira Date: Tue, 28 May 2024 22:12:04 +0900 Subject: [PATCH] Simplify Expressions and Enhance Grammar for Clarity (#2672) Co-authored-by: TBSten --- documentation/release-latest/docs/rules/standard.md | 4 ++-- documentation/snapshot/docs/rules/standard.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/documentation/release-latest/docs/rules/standard.md b/documentation/release-latest/docs/rules/standard.md index 2ce684bb89..7fe5915aa4 100644 --- a/documentation/release-latest/docs/rules/standard.md +++ b/documentation/release-latest/docs/rules/standard.md @@ -535,8 +535,8 @@ Enforce naming of property. === "[:material-heart:](#) Ktlint" ```kotlin - val foo1 = Foo() // In case developer want to communicate that Foo is mutable - val FOO1 = Foo() // In case developer want to communicate that Foo is deeply immutable + val foo1 = Foo() // In case developers want to tell that Foo is mutable + val FOO1 = Foo() // In case developers want to tell that Foo is deeply immutable const val FOO_BAR = "FOO-BAR" // By definition deeply immutable diff --git a/documentation/snapshot/docs/rules/standard.md b/documentation/snapshot/docs/rules/standard.md index cb3e331096..212820fa44 100644 --- a/documentation/snapshot/docs/rules/standard.md +++ b/documentation/snapshot/docs/rules/standard.md @@ -535,8 +535,8 @@ Enforce naming of property. === "[:material-heart:](#) Ktlint" ```kotlin - val foo1 = Foo() // In case developer want to communicate that Foo is mutable - val FOO1 = Foo() // In case developer want to communicate that Foo is deeply immutable + val foo1 = Foo() // In case developers want to tell that Foo is mutable + val FOO1 = Foo() // In case developers want to tell that Foo is deeply immutable const val FOO_BAR = "FOO-BAR" // By definition deeply immutable