Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Truffle] Fixed a typo.
  • Loading branch information
nirvdrum committed Nov 26, 2014
1 parent 3108c15 commit 3fb1b81
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -18,13 +18,13 @@
public abstract class NilClassNodes {

@CoreMethod(names = "inspect", needsSelf = false)
public abstract static class InpsectNode extends CoreMethodNode {
public abstract static class InspectNode extends CoreMethodNode {

public InpsectNode(RubyContext context, SourceSection sourceSection) {
public InspectNode(RubyContext context, SourceSection sourceSection) {
super(context, sourceSection);
}

public InpsectNode(InpsectNode prev) {
public InspectNode(InspectNode prev) {
super(prev);
}

Expand Down

0 comments on commit 3fb1b81

Please sign in to comment.