docs: change "See also" link in the println section to point to the String interpolation section

This commit is contained in:
Delyan Angelov 2024-11-23 14:03:13 +02:00
parent 1449689f2b
commit 660f73395e
No known key found for this signature in database
GPG key ID: 66886C0F12D595ED

View file

@ -3239,7 +3239,7 @@ println([1, 2, 3]) // "[1, 2, 3]"
println(User{ name: 'Bob', age: 20 }) // "User{name:'Bob', age:20}"
```
See also [Array methods](#array-methods).
See also [String interpolation](#string-interpolation).
<a id='custom-print-of-types'></a>