Skip to content

Commit 738f8e5

Browse files
author
Ciro S. Costa
committed
Adds author
1 parent 7653d3a commit 738f8e5

File tree

2 files changed

+10
-4
lines changed

2 files changed

+10
-4
lines changed

commands/speed.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ EXAMPLES:
3333
Make only a certain part of the video twice as fast:
3434
3535
asciinema-edit speed \
36-
--factor 2 \
37-
--start 12.231 \
38-
--factor 45.333 \
39-
./123.cast`,
36+
--factor 2 \
37+
--start 12.231 \
38+
--factor 45.333 \
39+
./123.cast`,
4040
ArgsUsage: "[filename]",
4141
Action: speedAction,
4242
Flags: []cli.Flag{

main.go

+6
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,12 @@ func main() {
1717

1818
app.Version = version + " - " + commit
1919
app.Usage = "edit recorded asciinema casts"
20+
app.Authors = []cli.Author{
21+
cli.Author{
22+
Name: "Ciro da Silva da Costa",
23+
Email: "ciro.costa@liferay.com",
24+
},
25+
}
2026
app.Description = `asciinema-edit provides missing features from the "asciinema" tool
2127
when it comes to editing a cast that has already been recorded.`
2228
app.Commands = []cli.Command{

0 commit comments

Comments
 (0)