mirror of
https://github.com/ProtonMail/proton-bridge.git
synced 2025-12-19 08:37:06 +00:00
fix: docstring mistakes
This commit is contained in:
@ -28,7 +28,7 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
// Jar implements http.CookieJar by wrapping the standard library's cookiejar.Jar.
|
// 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 {
|
type Jar struct {
|
||||||
jar *cookiejar.Jar
|
jar *cookiejar.Jar
|
||||||
pantry *pantry
|
pantry *pantry
|
||||||
|
|||||||
@ -24,6 +24,7 @@ import (
|
|||||||
"github.com/ProtonMail/proton-bridge/internal/preferences"
|
"github.com/ProtonMail/proton-bridge/internal/preferences"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// pantry persists and loads cookies to some persistent storage location.
|
||||||
type pantry struct {
|
type pantry struct {
|
||||||
gs GetterSetter
|
gs GetterSetter
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user