Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion go/permissions.go
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ type actionGate struct {
// is rejected before the handler runs.
//
// - `CheckActionAccess` (access.go) performs the per-argument match
// — fs.read's `path` is checked against `permissions.read[]`,
// — fs.read's path argument is checked against `permissions.read[]`,
// net.fetch's `host:port` is checked against `permissions.net[]`,
// etc. Handlers in go-io / core-net / go-process call it once
// with the caller-supplied argument before performing any
Expand Down
2 changes: 1 addition & 1 deletion go/pkg_electron_extract_tar.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func openTarReader(archive, body string) (

// stringReader wraps a string body with an io.Reader implementation so
// tar/gzip layers can stream the bytes without depending on the banned
// `strings` package. Mirrors the stringReaderAt helper in
// stdlib strings package. Mirrors the stringReaderAt helper in
// pkg_electron_extract.go for the zip path.
type stringReader struct {
body string
Expand Down
Loading