From 8b602e76415dbfe4d6ef80cdbc49aaecc7155be4 Mon Sep 17 00:00:00 2001 From: Adam Mckaig Date: Thu, 6 Mar 2014 12:27:42 -0500 Subject: [PATCH] Fix docstring --- context.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/context.go b/context.go index e5374db..bcc3faa 100644 --- a/context.go +++ b/context.go @@ -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()