diff --git a/src/tickers/tickers.go b/src/tickers/tickers.go index 1d9d5bc..6363531 100644 --- a/src/tickers/tickers.go +++ b/src/tickers/tickers.go @@ -1,6 +1,6 @@ // ## Tickers -// [Timers](timers.html) are for when you want to do +// [Timers](timers) are for when you want to do // something once in the future - tickers are for when you // want to do something repeatedly at regular intervals. // Here's an example of a ticker that ticks periodically diff --git a/src/timers/timers.go b/src/timers/timers.go index 826c9bf..a1a030c 100644 --- a/src/timers/timers.go +++ b/src/timers/timers.go @@ -4,7 +4,7 @@ // future, or repeatedly at some interval. Go's built-in // timer and ticker features make both of these tasks // easy. We'll look first at timers and then -// at [tickers](tickers.html). +// at [tickers](tickers). package main diff --git a/template/index.tmpl b/template/index.tmpl index b2753cd..4c8ba61 100644 --- a/template/index.tmpl +++ b/template/index.tmpl @@ -20,7 +20,7 @@

Go by Example