Commit 677c6d45 authored by Devin's avatar Devin

Fix a typo

parent 6cc6af69
...@@ -79,7 +79,7 @@ func (c *client) Execute(req *cmds.Request, re cmds.ResponseEmitter, env cmds.En ...@@ -79,7 +79,7 @@ func (c *client) Execute(req *cmds.Request, re cmds.ResponseEmitter, env cmds.En
res, err := c.Send(req) res, err := c.Send(req)
if err != nil { if err != nil {
if isConnRefused(err) { 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 return err
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment