mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
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
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user