From 8e6c437754ac3f829e9102ef0033d627a8f31a78 Mon Sep 17 00:00:00 2001 From: legendtkl Date: Thu, 8 Sep 2016 08:16:42 +0800 Subject: [PATCH] fix typo --- concurrency/generator.md | 2 +- concurrency/generators.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/concurrency/generator.md b/concurrency/generator.md index 853e4f7..2161248 100644 --- a/concurrency/generator.md +++ b/concurrency/generator.md @@ -3,4 +3,4 @@ [Generator](https://en.wikipedia.org/wiki/Generator_(computer_programming)) is a special routine that can be used to control the iteration behavior of a loop. # Implementation and Example -With Go language, we can implement generator in two ways: channel and closure. Fibnacci example can be found in [generators.go](generators.go). \ No newline at end of file +With Go language, we can implement generator in two ways: channel and closure. Fibonacci number generation example can be found in [generators.go](generators.go). \ No newline at end of file diff --git a/concurrency/generators.go b/concurrency/generators.go index 603dfcd..5b2b8b2 100644 --- a/concurrency/generators.go +++ b/concurrency/generators.go @@ -4,7 +4,7 @@ import ( "fmt" ) -//FibonacciClosure implements fibonacci number generatoin using closure +//FibonacciClosure implements fibonacci number generation using closure func FibonacciClosure() func() int { a, b := 0, 1 return func() int { @@ -13,7 +13,7 @@ func FibonacciClosure() func() int { } } -//FibonacciChan implements fibonacci number generatoin using channel +//FibonacciChan implements fibonacci number generation using channel func FibonacciChan(n int) chan int { c := make(chan int)