Skip to content

Commit

Permalink
Merge pull request #76 from bschaatsbergen/c/remove-trailing-newline
Browse files Browse the repository at this point in the history
  • Loading branch information
bschaatsbergen authored Dec 3, 2023
2 parents 5b57d1a + 7e1c993 commit 16180f9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cmd/contains.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const (
"cidr contains 10.0.0.0/16 10.0.14.5\n" +
"\n" +
"# Check whether an IPv6 CIDR range contains a given IPv6 address\n" +
"cidr contains 2001:db8:1234:1a00::/106 2001:db8:1234:1a00::\n"
"cidr contains 2001:db8:1234:1a00::/106 2001:db8:1234:1a00::"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/count.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const (
"cidr count 10.0.0.0/16\n" +
"\n" +
"# Return the count of all distinct host addresses within a given IPv6 CIDR range\n" +
"cidr count 2001:db8:1234:1a00::/106\n"
"cidr count 2001:db8:1234:1a00::/106"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion cmd/overlaps.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const (
"cidr overlaps 10.0.0.0/16 10.0.14.0/22\n" +
"\n" +
"# Check whether 2 IPv6 CIDR ranges overlap\n" +
"cidr overlaps 2001:db8:1111:2222:1::/80 2001:db8:1111:2222:1:1::/96\n"
"cidr overlaps 2001:db8:1111:2222:1::/80 2001:db8:1111:2222:1:1::/96"
)

var overlapsCmd = &cobra.Command{
Expand Down

0 comments on commit 16180f9

Please sign in to comment.