mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
fix strings.Builder.str()
This commit is contained in:
parent
be7cf3e812
commit
6ae8457f35
4 changed files with 7 additions and 8 deletions
|
@ -86,6 +86,6 @@ fn (w &Writer) field_needs_quotes(field string) bool {
|
|||
return false
|
||||
}
|
||||
|
||||
pub fn (w &Writer) str() string {
|
||||
pub fn (w mut Writer) str() string {
|
||||
return w.sb.str()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue