docs,ci: check more vlib modules in the report-missing-dots-in-doc-comments job (#24928)

This commit is contained in:
Delyan Angelov 2025-07-19 11:51:01 +03:00 committed by GitHub
parent ae9a69bdf7
commit 3725576729
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
69 changed files with 272 additions and 387 deletions

View file

@ -79,7 +79,7 @@ pub fn (mut b Builder) go_back_to(pos int) {
b.trim(pos)
}
// go_back discards the last `n` bytes from the buffer
// go_back discards the last `n` bytes from the buffer.
pub fn (mut b Builder) go_back(n int) {
b.trim(b.len - n)
}