Merge topic 'typos-1.39.0' into release-4.2

1405dc49e8 pre-commit: version bump `typos` and `sphinx-lint` hooks + fix found typos

Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !11380
This commit is contained in:
Brad King
2025-11-04 16:23:28 +00:00
committed by Kitware Robot
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -81,7 +81,7 @@ repos:
pass_filenames: false
- repo: https://github.com/sphinx-contrib/sphinx-lint
rev: v1.0.0
rev: v1.0.1
hooks:
- id: sphinx-lint
# NOTE Looks like `bad-dedent` gives too many false-positives.
@@ -110,7 +110,7 @@ repos:
# NOTE See BUG https://github.com/crate-ci/typos/issues/390
- repo: https://github.com/adhtruong/mirrors-typos
rev: v1.38.1
rev: v1.39.0
hooks:
- id: typos
# NOTE Override hook's default args to prevent automatic
+1 -1
View File
@@ -929,7 +929,7 @@ void cmFastbuildNormalTargetGenerator::Generate()
GenerateModuleDefinitionInfo(fastbuildTarget);
// Needs to be called after we've added all PRE-LINK steps (like creation of
// .def files on Windows).
AddLinkerNodeDependnecies(fastbuildTarget);
AddLinkerNodeDependencies(fastbuildTarget);
// Must be called after "GenerateObjects", since it also adds Prebuild deps
// to it.
+1 -1
View File
@@ -783,7 +783,7 @@ void cmFastbuildTargetGenerator::AddObjectDependencies(
cmGlobalFastbuildGenerator::TopologicalSort(fastbuildTarget.ObjectListNodes);
}
void cmFastbuildTargetGenerator::AddLinkerNodeDependnecies(
void cmFastbuildTargetGenerator::AddLinkerNodeDependencies(
FastbuildTarget& fastbuildTarget)
{
for (auto& linkerNode : fastbuildTarget.LinkerNode) {
+1 -1
View File
@@ -54,7 +54,7 @@ public:
void AddObjectDependencies(FastbuildTarget& fastbuildTarget,
std::vector<std::string>& allObjectDepends) const;
void AddLinkerNodeDependnecies(FastbuildTarget& fastbuildTarget);
void AddLinkerNodeDependencies(FastbuildTarget& fastbuildTarget);
std::string ConvertToFastbuildPath(std::string const& path) const;