diff --git a/weed/shell/command_fs_verify.go b/weed/shell/command_fs_verify.go index aff79e93c..a96fc09d1 100644 --- a/weed/shell/command_fs_verify.go +++ b/weed/shell/command_fs_verify.go @@ -194,7 +194,7 @@ func (c *commandFsVerify) verifyProcessMetadata(path string, wg *sync.WaitGroup) return nil } if *c.verbose { - fmt.Fprintf(c.writer, "file: %s needles:%d verifed\n", entryPath, chunkCount) + fmt.Fprintf(c.writer, "file: %s needles:%d verified\n", entryPath, chunkCount) } fileCount++ return nil @@ -312,7 +312,7 @@ func (c *commandFsVerify) verifyTraverseBfs(path string) (fileCount uint64, errC itemPath := string(i.path) if c.verifyEntry(itemPath, i.chunks, itemErrCount, &wg) { if *c.verbose { - fmt.Fprintf(c.writer, "file: %s needles:%d verifed\n", itemPath, len(i.chunks)) + fmt.Fprintf(c.writer, "file: %s needles:%d verified\n", itemPath, len(i.chunks)) } fileCount++ } diff --git a/weed/shell/command_volume_fsck.go b/weed/shell/command_volume_fsck.go index 3f653221d..62d75092d 100644 --- a/weed/shell/command_volume_fsck.go +++ b/weed/shell/command_volume_fsck.go @@ -225,7 +225,7 @@ func (c *commandVolumeFsck) Do(args []string, commandEnv *CommandEnv, writer io. } } if *c.verbose { - fmt.Fprintf(c.writer, "dn %+v filtred %d volumes and locations.\n", dataNodeId, len(dataNodeVolumeIdToVInfo[dataNodeId])) + fmt.Fprintf(c.writer, "dn %+v filtered %d volumes and locations.\n", dataNodeId, len(dataNodeVolumeIdToVInfo[dataNodeId])) } return nil })