From 741dfa6dcac7d6df01ed4ff0d3b13fdf451c87b6 Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Mon, 22 Jan 2024 16:30:04 +0100 Subject: [PATCH] Fix: Typo in release notes script Typo in the `--issue` argument help text: `Task that is contains` -> `Task that contains` --- release/lts/create_release_notes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release/lts/create_release_notes.py b/release/lts/create_release_notes.py index a2cc56a3b0e..b5bf55ea8e2 100755 --- a/release/lts/create_release_notes.py +++ b/release/lts/create_release_notes.py @@ -20,7 +20,7 @@ parser.add_argument( help="Version string in the form of {major}.{minor}.{patch} (e.g. 3.3.2)") parser.add_argument( "--issue", - help="Task that is contains the release notes information (e.g. #77348)") + help="Task that contains the release notes information (e.g. #77348)") parser.add_argument( "--format", help="Format the result in `text`, `steam`, `markdown` or `html`",