From e68ed720a503710942ff4a98e24e659ba4f4d9de Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Fri, 26 Oct 2012 07:37:43 -0700 Subject: [PATCH] edits --- examples/url-parsing/url-parsing.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/url-parsing/url-parsing.go b/examples/url-parsing/url-parsing.go index 9b2bd19..1229bb8 100644 --- a/examples/url-parsing/url-parsing.go +++ b/examples/url-parsing/url-parsing.go @@ -1,4 +1,4 @@ -// URLs provide a [uniform way to locating resources](http://adam.heroku.com/past/2010/3/30/urls_are_the_uniform_way_to_locate_resources/). +// URLs provide a [uniform way to locate resources](http://adam.heroku.com/past/2010/3/30/urls_are_the_uniform_way_to_locate_resources/). // Here's how to parse URLs in Go. package main @@ -20,7 +20,7 @@ func main() { panic(err) } - // Access to the scheme is straightforward. + // Accessing the scheme is straightforward. fmt.Println(u.Scheme) // `User` contains all authentication info; call