summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorGreg Stark2016-06-03 14:13:36 +0000
committerGreg Stark2016-06-03 15:08:45 +0000
commite1623c3959aac707732d7a6ad09adfb5751763b3 (patch)
tree3f73cc1c228576ae41f7f2444abb3dc65250c740 /src/tools
parentee4af347ba89b8492d1f86b6456865e1de1d030f (diff)
Fix various common mispellings.
Mostly these are just comments but there are a few in documentation and a handful in code and tests. Hopefully this doesn't cause too much unnecessary pain for backpatching. I relented from some of the most common like "thru" for that reason. The rest don't seem numerous enough to cause problems. Thanks to Kevin Lyda's tool https://pypi.python.org/pypi/misspellings
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/msvc/Project.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/msvc/Project.pm b/src/tools/msvc/Project.pm
index 4ce09418537..a4eb653c260 100644
--- a/src/tools/msvc/Project.pm
+++ b/src/tools/msvc/Project.pm
@@ -368,7 +368,7 @@ sub Save
sub GetAdditionalLinkerDependencies
{
- my ($self, $cfgname, $seperator) = @_;
+ my ($self, $cfgname, $separator) = @_;
my $libcfg = (uc $cfgname eq "RELEASE") ? "MD" : "MDd";
my $libs = '';
foreach my $lib (@{ $self->{libraries} })
@@ -382,7 +382,7 @@ sub GetAdditionalLinkerDependencies
last;
}
}
- $libs .= $xlib . $seperator;
+ $libs .= $xlib . $separator;
}
$libs =~ s/.$//;
$libs =~ s/__CFGNAME__/$cfgname/g;