Skip to content

Commit

Permalink
Merge pull request thealetheia#5 from 1gm/master
Browse files Browse the repository at this point in the history
Fix README usage section syntax errors
  • Loading branch information
demget authored Apr 20, 2020
2 parents 3b5baa5 + 4ab0a55 commit 519002b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ func init() {
br.Walk("testdata", func(path string, info os.FileInfo, err error) error {
// walk...
return nil
}
})
}

func main() {
server := http.FileServer(br)
http.ListenAndServe(":8080", server)))
http.ListenAndServe(":8080", server)
}
```

Expand Down

0 comments on commit 519002b

Please sign in to comment.