docs: Fix toolchain implementation file name (#2512)
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.
diff --git a/docs/toolchains.md b/docs/toolchains.md
index db4c6ba..4cc0948 100644
--- a/docs/toolchains.md
+++ b/docs/toolchains.md
@@ -376,7 +376,7 @@
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")