summaryrefslogtreecommitdiff
path: root/lib/Automake/DisjConditions.pm
diff options
context:
space:
mode:
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>2008-10-05 21:15:25 +0200
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>2008-10-05 21:15:25 +0200
commit2205fc6529f93237b1ea79d8d321a110e56d45ed (patch)
treecce43afd2bfa0ecfc5544915884702739be8a8dd /lib/Automake/DisjConditions.pm
parente4028ae2c06f82101c084b10e38affc8149954b1 (diff)
downloadautomake-2205fc6529f93237b1ea79d8d321a110e56d45ed.tar.gz
Fix some comment typos.
* automake.in: Fix some comment typos. * lib/Automake/Condition.pm: Likewise. * lib/Automake/DisjConditions.pm: Likewise. * lib/Automake/Variable.pm: Likewise. * lib/Automake/tests/DisjConditions.pl: Likewise. Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Diffstat (limited to 'lib/Automake/DisjConditions.pm')
-rw-r--r--lib/Automake/DisjConditions.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/Automake/DisjConditions.pm b/lib/Automake/DisjConditions.pm
index 89759dcd1..1f09c0fd4 100644
--- a/lib/Automake/DisjConditions.pm
+++ b/lib/Automake/DisjConditions.pm
@@ -110,7 +110,7 @@ follows.
(COND1 and COND2) or ((not COND3) and COND4)
-That's indeed the condition into which C<VAR> has a value.
+That's indeed the condition in which C<VAR> has a value.
Like C<Condition> objects, a C<DisjConditions> object is unique
with respect to its conditions. Two C<DisjConditions> objects created
@@ -176,7 +176,7 @@ sub new ($;@)
# Else, create a new DisjConditions.
# Store conditions as keys AND as values, because blessed
- # objects are converted to string when used as keys (so
+ # objects are converted to strings when used as keys (so
# at least we still have the value when we need to call
# a method).
my %h = map {$_ => $_} @filtered_conds;