From 0c4f5641082a5bfaeb3faf21440faa5badce539c Mon Sep 17 00:00:00 2001 From: Joshua Masiko Date: Thu, 17 Oct 2024 00:15:00 +0300 Subject: [PATCH] Fix typo in Doc comment (#307) --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index b813ba8..df2fd22 100644 --- a/client.go +++ b/client.go @@ -82,7 +82,7 @@ const defaultPluginLogBufferSize = 64 * 1024 // // Plugin hosts should use one Client for each plugin executable. To // dispense a plugin type, use the `Client.Client` function, and then -// cal `Dispense`. This awkward API is mostly historical but is used to split +// call `Dispense`. This awkward API is mostly historical but is used to split // the client that deals with subprocess management and the client that // does RPC management. //