Minor description change

This commit is contained in:
Radhi Fadlillah 2018-02-26 16:02:30 +07:00
parent 883474e031
commit c0d350def8
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ import (
var (
exportCmd = &cobra.Command{
Use: "export target-file",
Short: "Export bookmarks into HTML file in Firefox format.",
Short: "Export bookmarks into HTML file in Netscape Bookmark format.",
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
err := exportBookmarks(args[0])

View file

@ -14,7 +14,7 @@ import (
var (
importCmd = &cobra.Command{
Use: "import source-file",
Short: "Import bookmarks from HTML file in Firefox format.",
Short: "Import bookmarks from HTML file in Netscape Bookmark format.",
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
generateTag := cmd.Flags().Changed("generate-tag")