Skip to content

Commit

Permalink
Fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed Jul 7, 2017
1 parent 21a17b6 commit c29e851
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions api/renewer.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,14 @@ var (
//
// for {
// select {
// case err := <-DoneCh():
// case err := <-renewer.DoneCh():
// if err != nil {
// log.Fatal(err)
// }
//
// // Renewal is now over
// case renewal := <-RenewCh():
// case renewal := <-renewer.RenewCh():
// log.Printf("Successfully renewed: %#v", renewal)
// default:
// }
// }
//
Expand Down

0 comments on commit c29e851

Please sign in to comment.