Skip to content
This repository has been archived by the owner on Aug 12, 2024. It is now read-only.

Commit

Permalink
minor README improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
Binozo committed Jul 28, 2023
1 parent 9eff410 commit da8b8d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func main() {
// OWL works correctly on your hardware
//
// Take a look `owl.SubscribeToLogs()` if you want
// to listen at logs
// to listen to logs
go func() {
for {
owlError := <-owl.SubscribeToErrors()
Expand All @@ -111,7 +111,7 @@ func main() {
// Here you can accept or decline the sending request
// If you don't define this all requests will be declined
airdrop.OnAsk(func(request air.Request) bool {
fmt.Println("Incoming request from", request.SenderModelName)
fmt.Println("Incoming request from", request.SenderComputerName)
fmt.Println("Wants to send", len(request.Files), "files")
return true
})
Expand Down
2 changes: 1 addition & 1 deletion example/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func main() {
// OWL works correctly on your hardware
//
// Take a look `owl.SubscribeToLogs()` if you want
// to listen at logs
// to listen to logs
go func() {
for {
owlError := <-owl.SubscribeToErrors()
Expand Down

0 comments on commit da8b8d4

Please sign in to comment.