Skip to content

Commit

Permalink
Merge pull request #3 from i-sevostyanov/master
Browse files Browse the repository at this point in the history
Fix typo
  • Loading branch information
ardan-bkennedy authored Oct 12, 2018
2 parents a7acc21 + 786df8e commit c04c593
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions 6-search/example1/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ func main() {

start := time.Now()
results := google("golang")
elasped := time.Since(start)
elapsed := time.Since(start)

fmt.Println(results)
fmt.Println(elasped)
fmt.Println(elapsed)
}

func fakeSearch(kind string) search {
Expand Down
4 changes: 2 additions & 2 deletions 6-search/example2/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ func main() {

start := time.Now()
results := google("golang")
elasped := time.Since(start)
elapsed := time.Since(start)

fmt.Println(results)
fmt.Println(elasped)
fmt.Println(elapsed)
}

func fakeSearch(kind string) search {
Expand Down
4 changes: 2 additions & 2 deletions 6-search/example3/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ func main() {

start := time.Now()
results := google("golang")
elasped := time.Since(start)
elapsed := time.Since(start)

fmt.Println(results)
fmt.Println(elasped)
fmt.Println(elapsed)
}

func fakeSearch(kind string) search {
Expand Down
4 changes: 2 additions & 2 deletions 6-search/example4/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ func main() {
fakeSearch("replica 1"),
fakeSearch("replica 2"))

elasped := time.Since(start)
elapsed := time.Since(start)

fmt.Println(result)
fmt.Println(elasped)
fmt.Println(elapsed)
}

func fakeSearch(kind string) search {
Expand Down
4 changes: 2 additions & 2 deletions 6-search/example5/search.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ func main() {

start := time.Now()
results := google("golang")
elasped := time.Since(start)
elapsed := time.Since(start)

fmt.Println(results)
fmt.Println(elasped)
fmt.Println(elapsed)
}

func fakeSearch(kind string) search {
Expand Down

0 comments on commit c04c593

Please sign in to comment.