fix: docstring mistakes

This commit is contained in:
James Houlahan 2020-08-13 11:54:52 +02:00
parent 66082af40f
commit 1dcaa200e0
2 changed files with 2 additions and 1 deletions

View File

@ -28,7 +28,7 @@ import (
)
// Jar implements http.CookieJar by wrapping the standard library's cookiejar.Jar.
// The jar uses a Persister to load cookies at startup and save cookies when set.
// The jar uses a pantry to load cookies at startup and save cookies when set.
type Jar struct {
jar *cookiejar.Jar
pantry *pantry

View File

@ -24,6 +24,7 @@ import (
"github.com/ProtonMail/proton-bridge/internal/preferences"
)
// pantry persists and loads cookies to some persistent storage location.
type pantry struct {
gs GetterSetter
}