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

Commit da8b8d4

Browse files
committed
minor README improvements
1 parent 9eff410 commit da8b8d4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func main() {
9393
// OWL works correctly on your hardware
9494
//
9595
// Take a look `owl.SubscribeToLogs()` if you want
96-
// to listen at logs
96+
// to listen to logs
9797
go func() {
9898
for {
9999
owlError := <-owl.SubscribeToErrors()
@@ -111,7 +111,7 @@ func main() {
111111
// Here you can accept or decline the sending request
112112
// If you don't define this all requests will be declined
113113
airdrop.OnAsk(func(request air.Request) bool {
114-
fmt.Println("Incoming request from", request.SenderModelName)
114+
fmt.Println("Incoming request from", request.SenderComputerName)
115115
fmt.Println("Wants to send", len(request.Files), "files")
116116
return true
117117
})

example/example.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func main() {
1818
// OWL works correctly on your hardware
1919
//
2020
// Take a look `owl.SubscribeToLogs()` if you want
21-
// to listen at logs
21+
// to listen to logs
2222
go func() {
2323
for {
2424
owlError := <-owl.SubscribeToErrors()

0 commit comments

Comments
 (0)