summaryrefslogtreecommitdiff
path: root/Source/VSProps
diff options
context:
space:
mode:
authorJMC47 <JMC4789@gmail.com>2026-01-17 19:10:50 -0500
committerGitHub <noreply@github.com>2026-01-17 19:10:50 -0500
commit035bcffc63ecc803abeb6987f66a5b2f78f5f0bc (patch)
treeb46f7ec3d376fc2fef5ac0d2f48769b0e23e9353 /Source/VSProps
parentd098f2bba9fac19d90526fb9f7aceb0bb405b4b4 (diff)
parent1e0473e44f5e21558d75b0121bd935bb50825c26 (diff)
Merge pull request #14289 from Sintendo/typos
Fix various typos and spelling mistakes
Diffstat (limited to 'Source/VSProps')
-rw-r--r--Source/VSProps/Base.props2
-rw-r--r--Source/VSProps/PCHCreate.props4
-rw-r--r--Source/VSProps/qt_tasks.targets2
3 files changed, 4 insertions, 4 deletions
diff --git a/Source/VSProps/Base.props b/Source/VSProps/Base.props
index 2717cd6a1e..2d22925d7b 100644
--- a/Source/VSProps/Base.props
+++ b/Source/VSProps/Base.props
@@ -53,7 +53,7 @@
pathmap replaces path prefixes of source files with a hardcoded value, assisting with keeping output
files uniform even if actually built from different locations. The mapped path doesn't really need full
drive prefix, but it keeps things human readable. Note the trailing "\" is actually to be escaped by a
- preceeding "\" in the expanded variable.
+ preceding "\" in the expanded variable.
-->
<AdditionalOptions>/pathmap:"$(DolphinRootDir)\"=d:\ %(AdditionalOptions)</AdditionalOptions>
<AdditionalOptions>/pathmap:"$(WindowsSdkDir)\"=w:\ %(AdditionalOptions)</AdditionalOptions>
diff --git a/Source/VSProps/PCHCreate.props b/Source/VSProps/PCHCreate.props
index d7af57996e..c51d2803a6 100644
--- a/Source/VSProps/PCHCreate.props
+++ b/Source/VSProps/PCHCreate.props
@@ -18,7 +18,7 @@
<Lib>
<!--
Clear the output path so projects referencing this one don't try to drag
- in a nonexistant .lib file.
+ in a nonexistent .lib file.
-->
<OutputFile />
</Lib>
@@ -33,4 +33,4 @@
</PropertyGroup>
</Target>
<!--End .lib hacks-->
-</Project> \ No newline at end of file
+</Project>
diff --git a/Source/VSProps/qt_tasks.targets b/Source/VSProps/qt_tasks.targets
index 27380451a1..b87ccf039b 100644
--- a/Source/VSProps/qt_tasks.targets
+++ b/Source/VSProps/qt_tasks.targets
@@ -437,7 +437,7 @@
var readyDependents = dependentsOf[workItem.Key]
// ...that have not yet been queued...
.Where(x => postponedItems.Contains(x)
- // ...and whose dependending items have all terminated.
+ // ...and whose depending items have all terminated.
&& workItems[x].DependsOn.All(y => terminated.Contains(y)));
if (QtDebug && readyDependents.Any()) {