support new link structure

This commit is contained in:
Mark McGranaghan 2012-10-09 16:37:49 -07:00
parent d08c19b44e
commit c135e41ca5
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
// ## Tickers // ## 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 // something once in the future - tickers are for when you
// want to do something repeatedly at regular intervals. // want to do something repeatedly at regular intervals.
// Here's an example of a ticker that ticks periodically // Here's an example of a ticker that ticks periodically

View File

@ -4,7 +4,7 @@
// future, or repeatedly at some interval. Go's built-in // future, or repeatedly at some interval. Go's built-in
// timer and ticker features make both of these tasks // timer and ticker features make both of these tasks
// easy. We'll look first at timers and then // easy. We'll look first at timers and then
// at [tickers](tickers.html). // at [tickers](tickers).
package main package main

View File

@ -20,7 +20,7 @@
<h2>Go by Example</h2> <h2>Go by Example</h2>
<ul> <ul>
{{range .}} {{range .}}
<li><a href="{{.Id}}.html">{{.Name}}</a></li> <li><a href="{{.Id}}">{{.Name}}</a></li>
{{end}} {{end}}
</ul> </ul>
</div> </div>