diff options
author | Sam Zaydel <szaydel@gmail.com> | 2014-06-22 06:21:21 -0700 |
---|---|---|
committer | Sam Zaydel <szaydel@gmail.com> | 2014-06-22 06:21:21 -0700 |
commit | ff49deb88608785f913aa0129bab21807b397cd9 (patch) | |
tree | 92c438fbc5a86b96308cf337f2c7ddd6b0e6a964 | |
parent | e5d8895c8e837ac8fd0b7272195d0d99afbf589b (diff) |
Fixed `on` to `in` in comment.
-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 2e68a25c..0f022541 100644 --- a/go.html.markdown +++ b/go.html.markdown @@ -116,7 +116,7 @@ can include line breaks.` // Same string type. learnFlowControl() // Back in the flow. } -// It is possible, unlike in many other languages for functions on go +// It is possible, unlike in many other languages for functions in go // to have named return values. // We just have to assign a name to the type being returned in the function // declaration line. This allows us to easily return from multiple points |