Skip to content

Commit d2aa419

Browse files
committed
fix punctuation
1 parent 0ef30ab commit d2aa419

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

request-example.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"time"
1616
)
1717

18-
// InMemHandler returns a Hanlders object with the test handlers
18+
// InMemHandler returns a Hanlders object with the test handlers.
1919
func InMemHandler() Handlers {
2020
root := &root{
2121
files: make(map[string]*memFile),
@@ -24,7 +24,7 @@ func InMemHandler() Handlers {
2424
return Handlers{root, root, root, root}
2525
}
2626

27-
// Handlers
27+
// Example Handlers
2828
func (fs *root) Fileread(r *Request) (io.ReaderAt, error) {
2929
if fs.mockErr != nil {
3030
return nil, fs.mockErr

0 commit comments

Comments
 (0)