소스 검색

Merge branch 'nshttpd/dumps' of github.com:nshttpd/go into nshttpd/dumps

Steve Brunton 9 년 전
부모
커밋
ddf6a77212
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      context/context.go

+ 1 - 1
context/context.go

@@ -159,7 +159,7 @@ func (c *Context) Del(key string) error {
 	return c.db.Delete([]byte(key), &opt.WriteOptions{Sync: true})
 }
 
-// get everything in the db so dump it out for backup purposes
+// get everything in the db to dump it out for backup purposes
 func (c *Context) GetAll() (map [string]Route, error) {
 	golinks := map[string]Route{}
 	iter := c.db.NewIterator(nil, nil)