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