[PATCH] doc tools: fix 'path' typos
Randy Dunlap <[email protected]>
| Newsgroups | org.kernel.vger.linux-doc |
|---|---|
| Message-ID | <[email protected]> |
Correct "patch" or "patches" to "path" or "paths" in comments. Signed-off-by: Randy Dunlap <[email protected]> --- Cc: Jonathan Corbet <[email protected]> Cc: Shuah Khan <[email protected]> Cc: Mauro Carvalho Chehab <[email protected]> tools/docs/documentation-file-ref-check | 2 +- tools/docs/sphinx-build-wrapper | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) --- linux-next-20260805.orig/tools/docs/documentation-file-ref-check +++ linux-next-20260805/tools/docs/documentation-file-ref-check @@ -143,7 +143,7 @@ while (<IN>) { # Check if exists, evaluating wildcards next if (grep -e, glob("$ref $fulref")); - # Accept relative Documentation patches for tools/ + # Accept relative Documentation paths for tools/ if ($f =~ m/tools/) { my $path = $f; $path =~ s,(.*)/.*,$1,; --- linux-next-20260805.orig/tools/docs/sphinx-build-wrapper +++ linux-next-20260805/tools/docs/sphinx-build-wrapper @@ -99,9 +99,9 @@ class SphinxBuilder: def get_path(self, path, use_cwd=False, abs_path=False): """ - Ancillary routine to handle patches the right way, as shell does. + Ancillary routine to handle paths the right way, as shell does. - It first expands "~" and "~user". Then, if patch is not absolute, + It first expands "~" and "~user". Then, if path is not absolute, join self.srctree. Finally, if requested, convert to abspath. """