Unverified Commit 24be45ef authored by Steven Allen's avatar Steven Allen Committed by GitHub

Merge pull request #5700 from ipfs/fix/is-dir-err

coreapi: fix errisdir
parents 8543e27e e37b252c
...@@ -3,6 +3,6 @@ package iface ...@@ -3,6 +3,6 @@ package iface
import "errors" import "errors"
var ( var (
ErrIsDir = errors.New("object is a directory") ErrIsDir = errors.New("this dag node is a directory")
ErrOffline = errors.New("this action must be run in online mode, try running 'ipfs daemon' first") ErrOffline = errors.New("this action must be run in online mode, try running 'ipfs daemon' first")
) )
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