Browse Source

Fix docstring

Adam Mckaig 12 years ago
parent
commit
8b602e7641
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      context.go

+ 2
- 2
context.go View File

@ -59,8 +59,8 @@ func GetAll(r *http.Request) map[interface{}]interface{} {
return nil
}
// GetAll returns all stored values for the request as a map. It returns not ok
// if the request was never registered.
// GetAllOk returns all stored values for the request as a map. It returns not
// ok if the request was never registered.
func GetAllOk(r *http.Request) (map[interface{}]interface{}, bool) {
mutex.Lock()
defer mutex.Unlock()


Loading…
Cancel
Save