1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

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
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
}