Skip to content

Commit 091f09e

Browse files
authored
fixed a typo in a doc comment (#273)
1 parent 022ab6b commit 091f09e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tag.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ pub struct Tag {
2020
pub(crate) const CONSTRUCTED: u32 = 0x20;
2121

2222
impl Tag {
23-
/// Parses a `Tag` from bytes and returns either the `Tag and the
23+
/// Parses a `Tag` from bytes and returns either the `Tag` and the
2424
/// remaining bytes from the input or an error.
2525
pub fn from_bytes(mut data: &[u8]) -> ParseResult<(Tag, &[u8])> {
2626
let tag = match data.first() {

0 commit comments

Comments
 (0)