forked from mirror/cobra
cmd: Fix trimSrcPath doc
This commit is contained in:
parent
66cfd1f132
commit
903e5b7073
|
@ -85,7 +85,7 @@ func NewProjectFromPath(absPath string) *Project {
|
||||||
return p
|
return p
|
||||||
}
|
}
|
||||||
|
|
||||||
// trimSrcPath trims at the end of absPaththe srcPath.
|
// trimSrcPath trims at the beginning of absPath the srcPath.
|
||||||
func trimSrcPath(absPath, srcPath string) string {
|
func trimSrcPath(absPath, srcPath string) string {
|
||||||
relPath, err := filepath.Rel(srcPath, absPath)
|
relPath, err := filepath.Rel(srcPath, absPath)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in New Issue