Fix README, change -cvedbpath to -cve-dictionary-dbpath #84

This commit is contained in:
kota kanbe
2016-06-01 09:17:20 +09:00
parent b45163388d
commit 93ee329315
4 changed files with 38 additions and 23 deletions

View File

@@ -67,7 +67,7 @@ func (c Config) Validate() bool {
if len(c.CveDBPath) != 0 {
if ok, _ := valid.IsFilePath(c.CveDBPath); !ok {
errs = append(errs, fmt.Errorf(
"SQLite3 DB(Cve Doctionary) path must be a *Absolute* file path. dbpath: %s", c.CveDBPath))
"SQLite3 DB(Cve Dictionary) path must be a *Absolute* file path. dbpath: %s", c.CveDBPath))
}
}