Skip to content

Commit 0a44fdf

Browse files
openpgp: fix deprecation message
Fixes the referenced issue and removes an unnecessary word. Change-Id: Icbf8bd26bccbc603e7dd360d817900ac2ca63a69 Reviewed-on: https://go-review.googlesource.com/c/crypto/+/342049 Trust: Roland Shoemaker <[email protected]> Run-TryBot: Roland Shoemaker <[email protected]> TryBot-Result: Go Bot <[email protected]> Reviewed-by: Ian Lance Taylor <[email protected]>
1 parent 0ba0e8f commit 0a44fdf

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

openpgp/armor/armor.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// Deprecated: this package is unmaintained except for security fixes. New
99
// applications should consider a more focused, modern alternative to OpenPGP
1010
// for their specific task. If you are required to interoperate with OpenPGP
11-
// systems and need a maintained package, consider a maintained community fork.
12-
// See https://golang.org/issue/37497.
11+
// systems and need a maintained package, consider a community fork.
12+
// See https://golang.org/issue/44226.
1313
package armor // import "golang.org/x/crypto/openpgp/armor"
1414

1515
import (

openpgp/clearsign/clearsign.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
// Deprecated: this package is unmaintained except for security fixes. New
1212
// applications should consider a more focused, modern alternative to OpenPGP
1313
// for their specific task. If you are required to interoperate with OpenPGP
14-
// systems and need a maintained package, consider a maintained community fork.
15-
// See https://golang.org/issue/37497.
14+
// systems and need a maintained package, consider a community fork.
15+
// See https://golang.org/issue/44226.
1616
package clearsign // import "golang.org/x/crypto/openpgp/clearsign"
1717

1818
import (

openpgp/errors/errors.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
// Deprecated: this package is unmaintained except for security fixes. New
88
// applications should consider a more focused, modern alternative to OpenPGP
99
// for their specific task. If you are required to interoperate with OpenPGP
10-
// systems and need a maintained package, consider a maintained community fork.
11-
// See https://golang.org/issue/37497.
10+
// systems and need a maintained package, consider a community fork.
11+
// See https://golang.org/issue/44226.
1212
package errors // import "golang.org/x/crypto/openpgp/errors"
1313

1414
import (

openpgp/packet/packet.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// Deprecated: this package is unmaintained except for security fixes. New
99
// applications should consider a more focused, modern alternative to OpenPGP
1010
// for their specific task. If you are required to interoperate with OpenPGP
11-
// systems and need a maintained package, consider a maintained community fork.
12-
// See https://golang.org/issue/37497.
11+
// systems and need a maintained package, consider a community fork.
12+
// See https://golang.org/issue/44226.
1313
package packet // import "golang.org/x/crypto/openpgp/packet"
1414

1515
import (

openpgp/read.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
// Deprecated: this package is unmaintained except for security fixes. New
88
// applications should consider a more focused, modern alternative to OpenPGP
99
// for their specific task. If you are required to interoperate with OpenPGP
10-
// systems and need a maintained package, consider a maintained community fork.
11-
// See https://golang.org/issue/37497.
10+
// systems and need a maintained package, consider a community fork.
11+
// See https://golang.org/issue/44226.
1212
package openpgp // import "golang.org/x/crypto/openpgp"
1313

1414
import (

openpgp/s2k/s2k.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
// Deprecated: this package is unmaintained except for security fixes. New
99
// applications should consider a more focused, modern alternative to OpenPGP
1010
// for their specific task. If you are required to interoperate with OpenPGP
11-
// systems and need a maintained package, consider a maintained community fork.
12-
// See https://golang.org/issue/37497.
11+
// systems and need a maintained package, consider a community fork.
12+
// See https://golang.org/issue/44226.
1313
package s2k // import "golang.org/x/crypto/openpgp/s2k"
1414

1515
import (

0 commit comments

Comments
 (0)