Skip to content

Commit

Permalink
fix: Import comments should not contain v2 (#222)
Browse files Browse the repository at this point in the history
  • Loading branch information
lubux authored Aug 14, 2024
1 parent 1da78a7 commit cb6c426
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion openpgp/clearsign/clearsign.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//
// Clearsigned messages are cryptographically signed, but the contents of the
// message are kept in plaintext so that it can be read without special tools.
package clearsign // import "github.com/ProtonMail/go-crypto/v2/openpgp/clearsign"
package clearsign // import "github.com/ProtonMail/go-crypto/openpgp/clearsign"

import (
"bufio"
Expand Down
2 changes: 1 addition & 1 deletion openpgp/errors/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// license that can be found in the LICENSE file.

// Package errors contains common error types for the OpenPGP packages.
package errors // import "github.com/ProtonMail/go-crypto/v2/openpgp/errors"
package errors // import "github.com/ProtonMail/go-crypto/openpgp/errors"

import (
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion openpgp/packet/packet.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

// Package packet implements parsing and serialization of OpenPGP packets, as
// specified in RFC 4880.
package packet // import "github.com/ProtonMail/go-crypto/v2/openpgp/packet"
package packet // import "github.com/ProtonMail/go-crypto/openpgp/packet"

import (
"bytes"
Expand Down

0 comments on commit cb6c426

Please sign in to comment.