Skip to content

Commit

Permalink
validation, not verification
Browse files Browse the repository at this point in the history
  • Loading branch information
dolph committed Feb 3, 2023
1 parent a67c418 commit 4a27590
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# `connectivity`

`connectivity` is a tool for verifying network connectivity requirements.
`connectivity` is a tool for validating network connectivity requirements.

Given a set of URLs, connectivity attempts to reach each one as thoroughly as
possible. If a URL contains a hostname, it is first resolved. Each DNS record
Expand Down
2 changes: 1 addition & 1 deletion connectivity.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func main() {
}

func PrintUsage() {
fmt.Println("connectivity is a tool for verifying network connectivity requirements.")
fmt.Println("connectivity is a tool for validating network connectivity requirements.")
fmt.Println("")
fmt.Println("Usage: connectivity <command>")
fmt.Println("")
Expand Down
2 changes: 1 addition & 1 deletion destinations.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func (dest *Destination) WaitFor() {
reachable := dest.Check()

if reachable {
log.Printf("Connected to %s (%s)", dest, dest.Protocol)
log.Printf("Validated %s (%s)", dest, dest.Protocol)
return
}

Expand Down

0 comments on commit 4a27590

Please sign in to comment.