1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

docs: fix minor typos (#10565)

This commit is contained in:
yuyi 2021-06-25 17:11:29 +08:00 committed by GitHub
parent 809aa9af65
commit e648578f79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2043,11 +2043,11 @@ fn (foo &Foo) bar() {
In general, V's references are similar to Go pointers and C++ references. In general, V's references are similar to Go pointers and C++ references.
For example, a generic tree structure definition would look like this: For example, a generic tree structure definition would look like this:
```v wip ```v
struct Node<T> { struct Node<T> {
val T val T
left &Node left &Node<T>
right &Node right &Node<T>
} }
``` ```