Skip to content

Commit

Permalink
Fix typo: orginal to original
Browse files Browse the repository at this point in the history
  • Loading branch information
chulkilee committed Apr 1, 2013
1 parent 1cf0000 commit 6e51c8e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions lib/fission.old/error.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
module Fission
class Error < StandardError
attr_reader :orginal
attr_reader :original
def initialize(msg, original=$!)
super(msg)
@original = original; end
@original = original
end
end
end

2 changes: 1 addition & 1 deletion lib/veewee/error.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Veewee
class Error < StandardError
attr_reader :orginal
attr_reader :original

def initialize(msg, original = $!)
super(msg)
Expand Down

0 comments on commit 6e51c8e

Please sign in to comment.