Skip to content

Commit

Permalink
docs: Fix toolchain implementation file name (#2512)
Browse files Browse the repository at this point in the history
The code example comment uses `toolchain_impls` (extra s), while the
target references
use `toolchain_impl` (no s). This made me go back and double-check when
reading the
custom toolchain example (especially the definitions in L425ff).

Remove the extra "s" in the comment so it matches what the target
references are.
  • Loading branch information
nicholasjng authored Dec 18, 2024
1 parent 95fe03a commit 9306393
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/toolchains.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ Here, we show an example for a semi-complicated toolchain suite, one that is:
Defining toolchains for this might look something like this:

```
# File: toolchain_impls/BUILD
# File: toolchain_impl/BUILD
load("@rules_python//python:py_cc_toolchain.bzl", "py_cc_toolchain")
load("@rules_python//python:py_exec_tools_toolchain.bzl", "py_exec_tools_toolchain")
load("@rules_python//python:py_runtime.bzl", "py_runtime")
Expand Down

0 comments on commit 9306393

Please sign in to comment.