builder_js: fix mutable error

pull/3119/head
João Victor Oliveira Couto 2019-12-16 12:54:44 -03:00 committed by Alexander Medvednikov
parent 8271d239b2
commit b30f989f44
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ module strings
pub struct Builder {
mut:
buf []byte
pub:
pub mut:
len int
initial_size int = 1
}