Unverified Commit 260a5160 authored by Steven Allen's avatar Steven Allen Committed by GitHub

Merge pull request #169 from studyzy/master

Fix a typo
parents 6cc6af69 677c6d45
...@@ -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