From 55c2003bfe290ce3f0b5ed353594410f971006ba Mon Sep 17 00:00:00 2001 From: Sebastian Schuberth Date: Fri, 17 May 2024 19:14:30 +0200 Subject: [PATCH] docs(spdx-utils): Add a missing comma in a code comment Signed-off-by: Sebastian Schuberth --- utils/spdx/src/main/kotlin/SpdxExpression.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/spdx/src/main/kotlin/SpdxExpression.kt b/utils/spdx/src/main/kotlin/SpdxExpression.kt index 10f783c542cbe..778a7e9e1f0ab 100644 --- a/utils/spdx/src/main/kotlin/SpdxExpression.kt +++ b/utils/spdx/src/main/kotlin/SpdxExpression.kt @@ -355,7 +355,7 @@ class SpdxCompoundExpression( override fun toString() = // If the operator of the left or right expression is different from the operator of this expression, put the - // respective expression in parentheses. Semantically this would only be required if the priority of this + // respective expression in parentheses. Semantically, this would only be required if the priority of this // operator is higher than the priority of the operator of the left or right expression, but always adding // parentheses makes it easier to understand the expression. buildString {