Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(239)

Delta Between Two Patch Sets: src/pkg/crypto/openpgp/error/error.go

Issue 4442064: code review 4442064: src/pkg: make package doc comments consistently start w... (Closed)
Left Patch Set: Created 13 years, 11 months ago
Right Patch Set: diff -r 1c953954868a https://go.googlecode.com/hg/ Created 13 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/crypto/openpgp/armor/armor.go ('k') | src/pkg/crypto/openpgp/packet/packet.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2010 The Go Authors. All rights reserved. 1 // Copyright 2010 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // This package contains common error types for the OpenPGP packages. 5 // Package error contains common error types for the OpenPGP packages.
6 package error 6 package error
7 7
8 import ( 8 import (
9 "strconv" 9 "strconv"
10 ) 10 )
11 11
12 // A StructuralError is returned when OpenPGP data is found to be syntactically 12 // A StructuralError is returned when OpenPGP data is found to be syntactically
13 // invalid. 13 // invalid.
14 type StructuralError string 14 type StructuralError string
15 15
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 return "signature make by unknown entity" 55 return "signature make by unknown entity"
56 } 56 }
57 57
58 var UnknownIssuerError = unknownIssuer(0) 58 var UnknownIssuerError = unknownIssuer(0)
59 59
60 type UnknownPacketTypeError uint8 60 type UnknownPacketTypeError uint8
61 61
62 func (upte UnknownPacketTypeError) String() string { 62 func (upte UnknownPacketTypeError) String() string {
63 return "unknown OpenPGP packet type: " + strconv.Itoa(int(upte)) 63 return "unknown OpenPGP packet type: " + strconv.Itoa(int(upte))
64 } 64 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b