From c135e41ca59787133df874051855f2d85d55af66 Mon Sep 17 00:00:00 2001 From: Mark McGranaghan Date: Tue, 9 Oct 2012 16:37:49 -0700 Subject: [PATCH] support new link structure --- src/tickers/tickers.go | 2 +- src/timers/timers.go | 2 +- template/index.tmpl | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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