Files
google-labs-jules[bot] 86720090b6 docs: Add GoDoc to pkg and improve markdown files (#3251)
This change adds GoDoc comments to many of the public symbols in the
`pkg/` directory. It also includes various improvements to the
documentation in `README.md` and other markdown files in the `docs/`
directory.

This is a partial documentation effort, as requested by the user, to
get a pull request submitted quickly.

Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2025-09-22 19:37:15 +02:00

12 lines
238 B
Go

package secrets
// PermanentError signals that parsing should not attempt other formats.
type PermanentError struct {
Err error
}
// Error returns the underlying error.
func (p *PermanentError) Error() string {
return p.Err.Error()
}