diff options
author | Sam Zaydel <szaydel@gmail.com> | 2014-07-10 09:25:48 -0700 |
---|---|---|
committer | Sam Zaydel <szaydel@gmail.com> | 2014-07-10 09:25:48 -0700 |
commit | 7cddab2925260946c61eac60cc62764017a8e8af (patch) | |
tree | d6ddca0f0518d5969bc38b80e373fdd2498e84c7 | |
parent | 174f0baa14421834e181f37bd969d7f015a02adc (diff) |
Forgot to add `=>` to comment line.
-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 a5ea5859..88e2c8da 100644 --- a/go.html.markdown +++ b/go.html.markdown @@ -196,7 +196,7 @@ func learnFlowControl() { func(a, b int) int { return (a + b) * 2 }(10, 2)) // Called with args 10 and 2 - // Add + double two numbers: 24 + // => Add + double two numbers: 24 // When you need it, you'll love it. goto love |