Skip to content
This repository has been archived by the owner on Feb 24, 2024. It is now read-only.

Commit

Permalink
Fix comment format
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikcreemers authored and markbates committed Jul 29, 2017
1 parent 1e86249 commit f7372d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cookies.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func (c *Cookies) Get(name string) (string, error) {
return ck.Value, nil
}

// Sets a cookie on the response, which will expire after the given duration.
// Set a cookie on the response, which will expire after the given duration.
func (c *Cookies) Set(name, value string, maxAge time.Duration) {
ck := http.Cookie{
Name: name,
Expand Down
2 changes: 1 addition & 1 deletion default_context.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func (d *DefaultContext) Session() *Session {
return d.session
}

// cookies for the associated request and response.
// Cookies for the associated request and response.
func (d *DefaultContext) Cookies() *Cookies {
return &Cookies{d.request, d.response}
}
Expand Down

0 comments on commit f7372d5

Please sign in to comment.