diff options
| author | W1m3R <ruto1924@gmail.com> | 2017-11-10 15:41:45 +0900 |
|---|---|---|
| committer | W1m3R <ruto1924@gmail.com> | 2017-11-10 15:41:45 +0900 |
| commit | a3a007309f800b09ff72080da87fab8a3da6517c (patch) | |
| tree | 11e210f5378ff0d1e9b895c9513d2f4389865f46 | |
| parent | e32076406410554eb8cb557b95e856ba16820e2a (diff) | |
Fix typo error
| -rw-r--r-- | todolist/file_store.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/todolist/file_store.go b/todolist/file_store.go index 2eee5c1..45c4471 100644 --- a/todolist/file_store.go +++ b/todolist/file_store.go @@ -42,7 +42,7 @@ func (f *FileStore) Load() ([]*Todo, error) { data, err := ioutil.ReadFile(f.FileLocation) if err != nil { fmt.Println("No todo file found!") - fmt.Println("Initialize a new todo repo by running 'todo init'") + fmt.Println("Initialize a new todo repo by running 'todolist init'") os.Exit(0) return nil, err } |
