From: Russ Cox Date: Tue, 6 Apr 2010 05:55:05 +0000 (-0700) Subject: http: fix documentation example X-Git-Tag: weekly.2010-04-13~64 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=a267ff6a815ce9f8f92f9bcb41cc53f6ebae122a;p=gostls13.git http: fix documentation example R=adg CC=golang-dev https://golang.org/cl/813043 --- diff --git a/src/pkg/http/server.go b/src/pkg/http/server.go index bd1d0a703f..a28eb25ee4 100644 --- a/src/pkg/http/server.go +++ b/src/pkg/http/server.go @@ -571,20 +571,21 @@ func Serve(l net.Listener, handler Handler) os.Error { // package main // // import ( -// "http"; -// "io"; +// "http" +// "io" +// "log" // ) // // // hello world, the web server // func HelloServer(c *http.Conn, req *http.Request) { -// io.WriteString(c, "hello, world!\n"); +// io.WriteString(c, "hello, world!\n") // } // // func main() { -// http.Handle("/hello", http.HandlerFunc(HelloServer)); -// err := http.ListenAndServe(":12345", nil); +// http.HandleFunc("/hello", HelloServer) +// err := http.ListenAndServe(":12345", nil) // if err != nil { -// panic("ListenAndServe: ", err.String()) +// log.Exit("ListenAndServe: ", err.String()) // } // } func ListenAndServe(addr string, handler Handler) os.Error {