diff options
author | Adam Bard <github@adambard.com> | 2013-09-04 09:27:11 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-09-04 09:27:11 -0700 |
commit | bf15cd5aa40b29692d4ee297fb3ea3502c52a04f (patch) | |
tree | a7ad92afacc3c29354879a733c18702ed698dec5 /go.html.markdown | |
parent | d3ee747153b55a69ccd1bbddc769b5bbf9cbb38a (diff) | |
parent | dde956286abf4e90f74cbbb773c57c7838d6b812 (diff) |
Merge pull request #300 from JensRantil/parentheses-fix
parens => parentheses
Diffstat (limited to 'go.html.markdown')
-rw-r--r-- | go.html.markdown | 2 |
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. |