From 57acf20129a6cc79faa4af5ccbe13d84b4a6d0d1 Mon Sep 17 00:00:00 2001 From: Kim Shrier Date: Tue, 19 Dec 2023 05:16:55 -0700 Subject: [PATCH] docs: fix minor grammar error in channel documentation (#20218) --- doc/docs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/docs.md b/doc/docs.md index 07f5cf8357..4e9786cc62 100644 --- a/doc/docs.md +++ b/doc/docs.md @@ -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