From 39735846dd964f0feafff8b648e6bc2e4f49abcf Mon Sep 17 00:00:00 2001 From: David Steinbrunner Date: Fri, 9 Aug 2013 07:55:48 -0400 Subject: [PATCH 1/2] typo fixes --- lib/B/Utils.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/B/Utils.pm b/lib/B/Utils.pm index 0dc9207..95c8fb6 100644 --- a/lib/B/Utils.pm +++ b/lib/B/Utils.pm @@ -109,13 +109,13 @@ sub _FALSE () { !!0 } # =item C<$op-Eother> # # Normally if you call first, last or other on anything which is not an -# UNOP, BINOP or LOGOP respectivly it will die. This leads to lots of +# UNOP, BINOP or LOGOP respectively it will die. This leads to lots of # code like: # # $op->first if $op->can('first'); # # B::Utils provides every op with first, last and other methods which -# will simply return nothing if it isn't relevent. +# will simply return nothing if it isn't relevant. # # =cut # @@ -126,7 +126,7 @@ sub _FALSE () { !!0 } =item C<$op-Eoldname> Returns the name of the op, even if it is currently optimized to null. -This helps you understand the stucture of the op tree. +This helps you understand the structure of the op tree. =cut From bb9a6ab3d2673403d73f42174cf852400603b3c7 Mon Sep 17 00:00:00 2001 From: David Steinbrunner Date: Fri, 9 Aug 2013 07:56:45 -0400 Subject: [PATCH 2/2] typo fix --- build/IFiles.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/IFiles.pm b/build/IFiles.pm index 296e8ea..db77df5 100644 --- a/build/IFiles.pm +++ b/build/IFiles.pm @@ -10,7 +10,7 @@ $self = { }; -# this is for backwards compatiblity +# this is for backwards compatibility @deps = @{ $self->{deps} }; @typemaps = @{ $self->{typemaps} }; $libs = $self->{libs};