diff options
Diffstat (limited to 'src/pkg/crypto/openpgp/packet/literal.go')
-rw-r--r-- | src/pkg/crypto/openpgp/packet/literal.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/crypto/openpgp/packet/literal.go b/src/pkg/crypto/openpgp/packet/literal.go index 5f72d6a2c..04f50e53e 100644 --- a/src/pkg/crypto/openpgp/packet/literal.go +++ b/src/pkg/crypto/openpgp/packet/literal.go @@ -14,11 +14,11 @@ import ( type LiteralData struct { IsBinary bool FileName string - Time uint32 // Unix epoc time. Either creation time or modification time. 0 means undefined. + Time uint32 // Unix epoch time. Either creation time or modification time. 0 means undefined. Body io.Reader } -// ForEyesOnly return whether the contents of the LiteralData have been marked +// ForEyesOnly returns whether the contents of the LiteralData have been marked // as especially sensitive. func (l *LiteralData) ForEyesOnly() bool { return l.FileName == "_CONSOLE" |