Skip to content

Commit c3d9928

Browse files
committed
Grammar fixes
Signed-off-by: Sergei Shirshanov <[email protected]>
1 parent 448f9cb commit c3d9928

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cue/private/tools/cue/toolchain.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ _toolchains_repo = repository_rule(
240240
def download_tool(name, version = None):
241241
version = version or _DEFAULT_TOOL_VERSION
242242
if version not in _TOOLS_BY_RELEASE:
243-
fail("Unexpected version value {} for cue tool. Availible versions is: {}".format(version, ", ".join(_TOOLS_BY_RELEASE.keys())))
243+
fail("Unexpected version {} for cue tool. Available versions: {}".format(version, ", ".join(_TOOLS_BY_RELEASE.keys())))
244244
for platform in _TOOLS_BY_RELEASE[version].keys():
245245
repo_name = "{}-{}-{}".format(name, platform.os, platform.arch)
246246
_download_tool(

0 commit comments

Comments
 (0)