@@ -3076,7 +3076,7 @@ abstract class Expression internal constructor() {
30763076 * Note: The values to trim are treated as a **set**, not a substring.
30773077 *
30783078 * ```kotlin
3079- * // Trim leading '-' or '_' characters from the 'text' field.
3079+ * // Trim all leading '-' and '_' characters from the 'text' field.
30803080 * ltrimValue(field("text"), "-_")
30813081 * ```
30823082 *
@@ -3112,7 +3112,7 @@ abstract class Expression internal constructor() {
31123112 * Note: The values to trim are treated as a **set**, not a substring.
31133113 *
31143114 * ```kotlin
3115- * // Trim leading '-' or '_' characters from the 'text' field.
3115+ * // Trim all leading '-' and '_' characters from the 'text' field.
31163116 * ltrimValue("text", "-_")
31173117 * ```
31183118 *
@@ -3178,7 +3178,7 @@ abstract class Expression internal constructor() {
31783178 * Note: The values to trim are treated as a **set**, not a substring.
31793179 *
31803180 * ```kotlin
3181- * // Trim trailing '-' or '_' characters from the 'text' field.
3181+ * // Trim all trailing '-' and '_' characters from the 'text' field.
31823182 * rtrimValue(field("text"), "-_")
31833183 * ```
31843184 *
@@ -3214,7 +3214,7 @@ abstract class Expression internal constructor() {
32143214 * Note: The values to trim are treated as a **set**, not a substring.
32153215 *
32163216 * ```kotlin
3217- * // Trim trailing '-' or '_' characters from the 'text' field.
3217+ * // Trim all trailing '-' and '_' characters from the 'text' field.
32183218 * rtrimValue("text", "-_")
32193219 * ```
32203220 *
@@ -7579,7 +7579,7 @@ abstract class Expression internal constructor() {
75797579 * Note: The values to trim are treated as a **set**, not a substring.
75807580 *
75817581 * ```kotlin
7582- * // Trim leading '-' or '_' characters from the 'text' field.
7582+ * // Trim all leading '-' and '_' characters from the 'text' field.
75837583 * field("text").ltrimValue("-_")
75847584 * ```
75857585 *
@@ -7621,7 +7621,7 @@ abstract class Expression internal constructor() {
76217621 * Note: The values to trim are treated as a **set**, not a substring.
76227622 *
76237623 * ```kotlin
7624- * // Trim trailing '-' or '_' characters from the 'text' field.
7624+ * // Trim all trailing '-' and '_' characters from the 'text' field.
76257625 * field("text").rtrimValue("-_")
76267626 * ```
76277627 *
0 commit comments