[Lldb-commits] [lldb] [lldb] fix a typo in decorator's docstring (PR #181697)

Charles Zablit via lldb-commits lldb-commits at lists.llvm.org
Mon Feb 16 08:27:27 PST 2026


https://github.com/charles-zablit created https://github.com/llvm/llvm-project/pull/181697

None

>From ad01d270793ab42f50b8a13f2bf20676322d67b5 Mon Sep 17 00:00:00 2001
From: Charles Zablit <c_zablit at apple.com>
Date: Mon, 16 Feb 2026 17:26:58 +0100
Subject: [PATCH] [lldb] fix a typo in decorator's docstring

---
 lldb/packages/Python/lldbsuite/test/decorators.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lldb/packages/Python/lldbsuite/test/decorators.py b/lldb/packages/Python/lldbsuite/test/decorators.py
index b4658b149af90..0d3ae5b3cdd25 100644
--- a/lldb/packages/Python/lldbsuite/test/decorators.py
+++ b/lldb/packages/Python/lldbsuite/test/decorators.py
@@ -446,7 +446,7 @@ def unicode_test(func):
     """Decorate the item as a test which requires Unicode to be enabled.
 
     lldb checks the value of the `LANG` environment variable for the substring "utf-8"
-    to determine if the terminal supports Unicode (except on Windows, were we assume
+    to determine if the terminal supports Unicode (except on Windows, where we assume
     it's always supported).
     This decorator sets LANG to `utf-8` before running the test and resets it to its
     previous value afterwards.



More information about the lldb-commits mailing list