Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

typo fixes #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build/IFiles.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ $self = {
};


# this is for backwards compatiblity
# this is for backwards compatibility
@deps = @{ $self->{deps} };
@typemaps = @{ $self->{typemaps} };
$libs = $self->{libs};
Expand Down
6 changes: 3 additions & 3 deletions lib/B/Utils.pm
Original file line number Diff line number Diff line change
Expand Up @@ -109,13 +109,13 @@ sub _FALSE () { !!0 }
# =item C<$op-E<gt>other>
#
# 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
#
Expand All @@ -126,7 +126,7 @@ sub _FALSE () { !!0 }
=item C<$op-E<gt>oldname>

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

Expand Down