minor whitespace touchup

gedit's syntax highlighting breaks on the previous
This commit is contained in:
Ethan 2012-01-25 05:01:30 -05:00
parent b6ef9b00ad
commit 80c41c99fc
2 changed files with 2 additions and 2 deletions

View File

@ -590,7 +590,7 @@ module Google
unless headers.kind_of?(Enumerable)
# We need to use some Enumerable methods, relying on the presence of
# the #each method.
class <<headers
class << headers
include Enumerable
end
end

View File

@ -43,7 +43,7 @@ module Google
def initialize(document_base, discovery_document)
@document_base = Addressable::URI.parse(document_base)
@discovery_document = discovery_document
metaclass = (class <<self; self; end)
metaclass = (class << self; self; end)
self.discovered_resources.each do |resource|
method_name = Google::INFLECTOR.underscore(resource.name).to_sym
if !self.respond_to?(method_name)