AE: Fix typo in remove.go

Change-Id: I065066b2b8d9c4c728fce150348254730d1aecd5
This commit is contained in:
Brett Slatkin 2011-12-04 14:10:35 -08:00
parent 9bad75cb95
commit 1272ff17e9
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ func handleRemove(conn http.ResponseWriter, req *http.Request, storage blobserve
configer, ok := storage.(blobserver.Configer)
if !ok {
conn.WriteHeader(http.StatusForbidden)
fmt.Fprintf(conn, "Remove handler's blobserver.Storage isn't a blobserver.Configuer; can't remove")
fmt.Fprintf(conn, "Remove handler's blobserver.Storage isn't a blobserver.Configer; can't remove")
return
}
if !configer.Config().IsQueue {