Skip to content
Snippets Groups Projects
Commit 236c736d authored by Alex Reisner's avatar Alex Reisner
Browse files

Improve code comments.

parent 16fd4bad
No related branches found
No related tags found
No related merge requests found
module Geocoder
module Result
class Base
attr_accessor :data, :cache_hit
# data (hash) fetched from geocoding service
attr_accessor :data
# true if result came from cache, false if from request to geocoding
# service; nil if cache is not configured
attr_accessor :cache_hit
##
# Takes a hash of result data from a parsed Google result document.
# Takes a hash of data from a parsed geocoding service response.
#
def initialize(data)
@data = data
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment