Skip to content

Commit

Permalink
Merge pull request #266 from russross/avoid-unneeded-break
Browse files Browse the repository at this point in the history
Avoid unneeded break statement.
  • Loading branch information
rtfb committed May 31, 2016
2 parents 2004188 + b88a9bd commit 1d6b8e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion inline.go
Original file line number Diff line number Diff line change
Expand Up @@ -938,7 +938,7 @@ func isMailtoAutoLink(data []byte) int {
nb++

case '-', '.', '_':
break
// Do nothing.

case '>':
if nb == 1 {
Expand Down

0 comments on commit 1d6b8e9

Please sign in to comment.