docs: cleanup (#14327)

This commit is contained in:
David 'Epper' Marshall 2022-05-07 13:18:42 -04:00 committed by GitHub
parent b53b1cc7cb
commit a91226c376
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 28 additions and 20 deletions

View file

@ -57,7 +57,7 @@ pub fn (mut b Builder) write_b(data u8) {
b << data
}
// write_byte appends a single `data` byte to the accumulated buffer
// write_u8 appends a single `data` byte to the accumulated buffer
pub fn (mut b Builder) write_u8(data u8) {
b << data
}