summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-09-04 09:27:11 -0700
committerAdam Bard <github@adambard.com>2013-09-04 09:27:11 -0700
commitbf15cd5aa40b29692d4ee297fb3ea3502c52a04f (patch)
treea7ad92afacc3c29354879a733c18702ed698dec5
parentd3ee747153b55a69ccd1bbddc769b5bbf9cbb38a (diff)
parentdde956286abf4e90f74cbbb773c57c7838d6b812 (diff)
Merge pull request #300 from JensRantil/parentheses-fix
parens => parentheses
-rw-r--r--go.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/go.html.markdown b/go.html.markdown
index 456f0c19..3a3800dd 100644
--- a/go.html.markdown
+++ b/go.html.markdown
@@ -46,7 +46,7 @@ func main() {
}
// Functions have parameters in parentheses.
-// If there are no parameters, empty parens are still required.
+// If there are no parameters, empty parentheses are still required.
func beyondHello() {
var x int // Variable declaration. Variables must be declared before use.
x = 3 // Variable assignment.