Skip to content

Commit 0e50e63

Browse files
committed
Tweak example input
1 parent fb62eba commit 0e50e63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DEVELOPING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ $ go test # All tests must pass
1717
`note` uses AppleScript to drive Notes.app. The underlying AppleScript script can be tested like this:
1818

1919
```sh
20-
$ osascript append_to_latest_unshared_note.txt "text to append"
20+
$ osascript append_to_latest_unshared_note.txt "Text to append"
2121
```
2222

2323
Please note that the formatting of the text (as HTML) is set in the containing Go code.

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func main() {
1818
app := &cli.App{
1919
Name: "note",
2020
Usage: "Append to latest Apple Notes note",
21-
ArgsUsage: "<text to append>",
21+
ArgsUsage: "\"Text to append\"",
2222
Description: "Ignores shared notes. Formats as new line by default.",
2323
HideHelpCommand: true,
2424
Version: "v0.0.6",

0 commit comments

Comments
 (0)