mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
fix strings.Builder.str()
This commit is contained in:
@@ -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()
|
||||
}
|
||||
|
Reference in New Issue
Block a user