From 6e51c8e90da19bd8e4c0c79219d4c69339c5818f Mon Sep 17 00:00:00 2001 From: Chulki Lee Date: Sun, 31 Mar 2013 19:25:55 -0700 Subject: [PATCH] Fix typo: orginal to original --- lib/fission.old/error.rb | 5 +++-- lib/veewee/error.rb | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/fission.old/error.rb b/lib/fission.old/error.rb index b9103535..3da5d4de 100644 --- a/lib/fission.old/error.rb +++ b/lib/fission.old/error.rb @@ -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 diff --git a/lib/veewee/error.rb b/lib/veewee/error.rb index 7dd41bec..c808d993 100644 --- a/lib/veewee/error.rb +++ b/lib/veewee/error.rb @@ -1,6 +1,6 @@ module Veewee class Error < StandardError - attr_reader :orginal + attr_reader :original def initialize(msg, original = $!) super(msg)