docs: fix minor grammar error in channel documentation (#20218)

This commit is contained in:
Kim Shrier 2023-12-19 05:16:55 -07:00 committed by GitHub
parent 5be5cd9be1
commit 57acf20129
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -4173,7 +4173,7 @@ Channels can be buffered or unbuffered and it is possible to `select` from multi
#### Syntax and Usage
Channels have the type `chan objtype`. An optional buffer length can specified as the `cap` field
Channels have the type `chan objtype`. An optional buffer length can be specified as the `cap` field
in the declaration:
```v