From 743dadd3f7cfabd9d0dbaebff3b4f07d32c5f1ef Mon Sep 17 00:00:00 2001 From: Harald Eilertsen Date: Mon, 2 Feb 2015 14:05:43 +0100 Subject: Fix typos in readme. --- README.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index e0c13bc..119214f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ In your Gemfile, add the following: gem 'postcodes-norway' -The run `bundle install` as usual. +Then run `bundle install` as usual. Fetch the data: @@ -33,15 +33,15 @@ Initialize the library: Query for some postcodes: - p = PostCodes.search(1326) - puts p.city # => "LYSAKER" - puts p.municipality_name # => "BÆRUM" - puts p.county # => [2, "AKERSHUS"] + p1 = PostCodes.search(1326) + puts p1.city # => "LYSAKER" + puts p1.municipality_name # => "BÆRUM" + puts p1.county # => [2, "AKERSHUS"] - p1 = PostCodes.search('0666') - puts p1.city # => "OSLO" - puts p1.municipality_name # => "OSLO" - puts p1.county # => [3, "OSLO"] + p2 = PostCodes.search('0666') + puts p2.city # => "OSLO" + puts p2.municipality_name # => "OSLO" + puts p2.county # => [3, "OSLO"] Contributing -- cgit v1.2.3