From 9ec651ed7709a8f555d64cfa768b909512093551 Mon Sep 17 00:00:00 2001 From: aoright <102943475+aoright@users.noreply.github.com> Date: Fri, 21 Aug 2026 13:05:01 +0800 Subject: [PATCH] docs: add missing period to tokenize docstring Signed-off-by: aoright <102943475+aoright@users.noreply.github.com> --- src/cleo/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cleo/helpers.py b/src/cleo/helpers.py index e2b922cc..6d9aecce 100644 --- a/src/cleo/helpers.py +++ b/src/cleo/helpers.py @@ -44,7 +44,7 @@ def option( def tokenize(string: str) -> list[str]: # pragma: no cover """ - Split the string using shell-like syntax. Maps directly to using `shlex.split` + Split the string using shell-like syntax. Maps directly to using `shlex.split`. """ import shlex