docs: fix minor typos (#10565)

pull/10569/head
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
1 changed files with 17 additions and 17 deletions

View File

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