Skip to content

Commit 4c51add

Browse files
author
Artem Gindinson
authored
[SYCL][NFC] Clean up the builder_dir argument description (#3021)
Signed-off-by: Artem Gindinson <[email protected]>
1 parent d7ca5da commit 4c51add

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

buildbot/check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def main():
4949
parser.add_argument("-d", "--base-branch", metavar="BASE_BRANCH", help="pull request base branch")
5050
parser.add_argument("-r", "--pr-number", metavar="PR_NUM", help="pull request number")
5151
parser.add_argument("-w", "--builder-dir", metavar="BUILDER_DIR",
52-
help="builder directory, which is the directory contains source and build directories")
52+
help="builder directory, which is the directory containing source and build directories")
5353
parser.add_argument("-s", "--src-dir", metavar="SRC_DIR", help="source directory")
5454
parser.add_argument("-o", "--obj-dir", metavar="OBJ_DIR", help="build directory")
5555
parser.add_argument("-t", "--test-suite", metavar="TEST_SUITE", default="check-all", help="check-xxx target")

buildbot/clang_tidy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def main():
5151
help="pull request base branch")
5252
parser.add_argument("-r", "--pr-number", metavar="PR_NUM", help="pull request number")
5353
parser.add_argument("-w", "--builder-dir", metavar="BUILDER_DIR", required=True,
54-
help="builder directory, which is the directory contains source and build directories")
54+
help="builder directory, which is the directory containing source and build directories")
5555
parser.add_argument("-s", "--src-dir", metavar="SRC_DIR", required=True, help="source directory")
5656
parser.add_argument("-o", "--obj-dir", metavar="OBJ_DIR", required=True, help="build directory")
5757

buildbot/compile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def main():
5151
parser.add_argument("-d", "--base-branch", metavar="BASE_BRANCH", help="pull request base branch")
5252
parser.add_argument("-r", "--pr-number", metavar="PR_NUM", help="pull request number")
5353
parser.add_argument("-w", "--builder-dir", metavar="BUILDER_DIR",
54-
help="builder directory, which is the directory contains source and build directories")
54+
help="builder directory, which is the directory containing source and build directories")
5555
parser.add_argument("-s", "--src-dir", metavar="SRC_DIR", help="source directory")
5656
parser.add_argument("-o", "--obj-dir", metavar="OBJ_DIR", help="build directory")
5757
parser.add_argument("-j", "--build-parallelism", metavar="BUILD_PARALLELISM", help="build parallelism")

buildbot/configure.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def main():
123123
parser.add_argument("-d", "--base-branch", metavar="BASE_BRANCH", help="pull request base branch")
124124
parser.add_argument("-r", "--pr-number", metavar="PR_NUM", help="pull request number")
125125
parser.add_argument("-w", "--builder-dir", metavar="BUILDER_DIR",
126-
help="builder directory, which is the directory contains source and build directories")
126+
help="builder directory, which is the directory containing source and build directories")
127127
# User options
128128
parser.add_argument("-s", "--src-dir", metavar="SRC_DIR", help="source directory (autodetected by default)")
129129
parser.add_argument("-o", "--obj-dir", metavar="OBJ_DIR", help="build directory. (<src>/build by default)")

buildbot/dependency.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def main():
9797
parser.add_argument("-d", "--base-branch", metavar="BASE_BRANCH", help="pull request base branch")
9898
parser.add_argument("-r", "--pr-number", metavar="PR_NUM", help="pull request number")
9999
parser.add_argument("-w", "--builder-dir", metavar="BUILDER_DIR",
100-
help="builder directory, which is the directory contains source and build directories")
100+
help="builder directory, which is the directory containing source and build directories")
101101
parser.add_argument("-s", "--src-dir", metavar="SRC_DIR", help="source directory")
102102
parser.add_argument("-o", "--obj-dir", metavar="OBJ_DIR", required=True, help="build directory")
103103
parser.add_argument("-c", "--clean-build", action="store_true", default=False,

0 commit comments

Comments
 (0)