mirror of
https://github.com/golang/go
synced 2024-11-22 19:05:01 -07:00
encoding/asn1: fix doc for BitString.At's return value
Fixes #53287 Change-Id: If983ae34850d9b1b29764156a38628fa53897573 Reviewed-on: https://go-review.googlesource.com/c/go/+/411134 TryBot-Result: Gopher Robot <gobot@golang.org> Reviewed-by: Heschi Kreinick <heschi@google.com> Run-TryBot: hopehook <hopehook@golangcn.org> Reviewed-by: Rob Pike <r@golang.org> Reviewed-by: Benny Siegert <bsiegert@gmail.com> Reviewed-by: hopehook <hopehook@golangcn.org> Reviewed-by: Subham <sarkar.subhams2@gmail.com>
This commit is contained in:
parent
ec2ea40b31
commit
202b7e7e76
@ -162,7 +162,7 @@ type BitString struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// At returns the bit at the given index. If the index is out of range it
|
// At returns the bit at the given index. If the index is out of range it
|
||||||
// returns false.
|
// returns 0.
|
||||||
func (b BitString) At(i int) int {
|
func (b BitString) At(i int) int {
|
||||||
if i < 0 || i >= b.BitLength {
|
if i < 0 || i >= b.BitLength {
|
||||||
return 0
|
return 0
|
||||||
|
Loading…
Reference in New Issue
Block a user