From 677c6d45385aeb7c996b4fe1a307339971ca749a Mon Sep 17 00:00:00 2001 From: Devin Date: Thu, 6 Jun 2019 09:47:33 +0800 Subject: [PATCH] Fix a typo --- http/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http/client.go b/http/client.go index 941d4eb..d22ee40 100644 --- a/http/client.go +++ b/http/client.go @@ -79,7 +79,7 @@ func (c *client) Execute(req *cmds.Request, re cmds.ResponseEmitter, env cmds.En res, err := c.Send(req) if err != nil { if isConnRefused(err) { - err = fmt.Errorf("cannot connect to the api. Is the deamon running? To run as a standalone CLI command remove the api file in `$IPFS_PATH/api`") + err = fmt.Errorf("cannot connect to the api. Is the daemon running? To run as a standalone CLI command remove the api file in `$IPFS_PATH/api`") } return err } -- GitLab