diff --git a/README.textile b/README.textile index 02233b9..65ef90c 100644 --- a/README.textile +++ b/README.textile @@ -6,28 +6,23 @@ h2. Usage To get started, instantiate a client by passing in your Glitch API key. -
-  
+
     snafu = Snafu.new("the-api-key")
-  
 
Currently, only the locations.* methods are supported and each returns a Ruby object representing its data. -
-  
+
     hubs = snafu.get_hubs # "locations.getHubs"
     hub = snafu.get_hub(hub_id) # "locations.getStreets"
     street = snafu.get_street(street_tsid) # "locations.streetInfo"
-  
 
The rest of the API will be supported in due time. You can also receive raw data from the Glitch API by passing in any method as a string and supplying required parameters via an options hash. This returns a Hash representation of the JSON returned by Glitch: -
-  
+
     snafu.call("calendar.getHolidays")
     # => {
     # =>   "ok"=>1,
@@ -44,6 +39,7 @@ You can also receive raw data from the Glitch API by passing in any method as a
     # =>    {"month"=>8, "day"=>37, "name"=>"Zilloween"},
     # =>    {"month"=>11, "day"=>11, "name"=>"Recurse Eve"}]
     # => }
+
     snafu.call("locations.getStreets", :hub_id => 27)
     # => {
     # =>   "ok"=>1,
@@ -60,6 +56,5 @@ You can also receive raw data from the Glitch API by passing in any method as a
     # =>     "LM413RQ6LRG9N"=>{"name"=>"West Spice"}
     # =>   }
     # => }
-