Skip to content

Commit

Permalink
Add more delay in when creating usage gif
Browse files Browse the repository at this point in the history
  • Loading branch information
caitlinelfring committed Aug 27, 2020
1 parent 16add93 commit bc391ff
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion img/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,11 @@ func main() {
c.Send(fmt.Sprintf("%c", char))
time.Sleep(time.Millisecond * 60)
}
time.Sleep(time.Millisecond * 500)
c.Send("\n")
time.Sleep(time.Second * 2)
time.Sleep(time.Millisecond * 1500)
}
time.Sleep(time.Millisecond * 2000)
}()

wg.Wait()
Expand Down

0 comments on commit bc391ff

Please sign in to comment.