Mention SQLite3 in app usage

This commit is contained in:
Daniele Tricoli 2015-12-12 02:20:24 +01:00
parent 9de7019951
commit dc8d49b4a3
2 changed files with 2 additions and 3 deletions

View file

@ -18,7 +18,7 @@ http://www.unicode.org/Public/UNIDATA/UnicodeData.txt.
```console
% piken -h
NAME:
piken - unicode search tool
piken - unicode search tool backed by SQLite3
USAGE:
./piken [global options] command [command options] [arguments...]

View file

@ -36,7 +36,7 @@ func main() {
app.Version = version
app.Author = "Daniele Tricoli"
app.Email = "eriol@mornie.org"
app.Usage = "unicode search tool"
app.Usage = "unicode search tool backed by SQLite3"
if _, err := os.Stat(baseDir); os.IsNotExist(err) {
os.Mkdir(baseDir, 0755)
@ -157,5 +157,4 @@ func main() {
}
app.Run(os.Args)
}