1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00

Corrected Classname and error comment for lib/fog/core/compute.rb was set as storage

This commit is contained in:
Paul Thornthwaite 2010-11-08 16:58:02 +00:00
parent 2a71ed0a4c
commit 2da4467ef4

View file

@ -1,5 +1,5 @@
module Fog
class Storage
class Compute
def self.new(attributes)
case provider = attributes.delete(:provider)
@ -25,7 +25,7 @@ module Fog
require 'fog/slicehost'
Fog::Slicehost::Compute.new(attributes)
else
raise ArgumentError.new("#{provider} is not a recognized storage provider")
raise ArgumentError.new("#{provider} is not a recognized compute provider")
end
end