summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMani Tadayon <bowsersenior@gmail.com>2012-06-04 12:50:01 -0700
committerTerence Lee <hone02@gmail.com>2012-06-05 12:34:17 +0300
commit1a9aefb24b49895392bb9d670f916d18ddb559cd (patch)
tree0ab01edbe7c0be30e4d3b9fc5e104b44f91b24be
parente1d71e7948537333f5b46d8532e4bf0afc3a8ba0 (diff)
downloadbundler-1a9aefb24b49895392bb9d670f916d18ddb559cd.tar.gz
Fix typos in error messages
-rw-r--r--lib/bundler/dsl.rb2
-rw-r--r--spec/lock/lockfile_spec.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/bundler/dsl.rb b/lib/bundler/dsl.rb
index f62cf03ee9..286b6d493e 100644
--- a/lib/bundler/dsl.rb
+++ b/lib/bundler/dsl.rb
@@ -86,7 +86,7 @@ module Bundler
else
raise DslError, "You cannot specify the same gem twice coming from different sources. You " \
"specified that #{dep.name} (#{dep.requirement}) should come from " \
- "#{current.source || 'an unspecfied source'} and #{dep.source}"
+ "#{current.source || 'an unspecified source'} and #{dep.source}"
end
end
end
diff --git a/spec/lock/lockfile_spec.rb b/spec/lock/lockfile_spec.rb
index 07f614101a..81c5119e94 100644
--- a/spec/lock/lockfile_spec.rb
+++ b/spec/lock/lockfile_spec.rb
@@ -646,7 +646,7 @@ describe "the lockfile format" do
G
bundled_app("Gemfile.lock").should_not exist
- out.should include "rack (>= 0) should come from an unspecfied source and git://hubz.com (at master)"
+ out.should include "rack (>= 0) should come from an unspecified source and git://hubz.com (at master)"
end
it "works correctly with multiple version dependencies" do