From ec2e010ea2a250df750cad8dbc9e3582583015d0 Mon Sep 17 00:00:00 2001 From: Arthit Suriyawongkul Date: Tue, 21 Jul 2026 22:08:51 +0100 Subject: [PATCH] Fix typos in License Expression annex Signed-off-by: Arthit Suriyawongkul --- docs/annexes/spdx-license-expressions.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/annexes/spdx-license-expressions.md b/docs/annexes/spdx-license-expressions.md index b718bb7676ff..4206d74959c5 100644 --- a/docs/annexes/spdx-license-expressions.md +++ b/docs/annexes/spdx-license-expressions.md @@ -134,7 +134,7 @@ An example where three different licenses apply would be: LGPL-2.1-only AND MIT AND BSD-2-Clause ``` -The "AND" operator is the only operator that can be used in conjuction with the special identifiers "NONE" or "NOASSERTION". +The "AND" operator is the only operator that can be used in conjunction with the special identifiers "NONE" or "NOASSERTION". ### Additive "WITH" operator @@ -236,9 +236,9 @@ required-ws = 1*SPACE ; Required whitespace (one or more spaces) SPACE = %x20 ; Space character LPAREN = %x28 ; ( - Left parenthesis RPAREN = %x29 ; ) - Right parenthesis -PLUS = %2B ; + - Plus -DASH = %2D ; - - Dash, hyphen -DOT = %2E ; . - Dot, fullstop, period +PLUS = %x2B ; + - Plus +DASH = %x2D ; - - Dash, hyphen +DOT = %x2E ; . - Dot, fullstop, period ALPHA = %x41-5A / %x61-7A ; A-Z / a-z DIGIT = %x30-39 ; 0-9