Skip to content

Commit

Permalink
Fix typo in examples
Browse files Browse the repository at this point in the history
retuned -> returned
  • Loading branch information
namvdo authored and Sean-Der committed Mar 16, 2021
1 parent d29548c commit 4942778
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ Check out the **[contributing wiki](https://github.com/pion/webrtc/wiki/Contribu
* [donotanswer](https://github.com/f-viktor)
* [Reese](https://github.com/figadore)
* [David Zhao](https://github.com/davidzhao)
* [Nam V. Do](https://github.com/namvdo)

### License
MIT License - see [LICENSE](LICENSE) for full text
2 changes: 1 addition & 1 deletion examples/broadcast/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ func main() { // nolint:gocognit
}

// Read incoming RTCP packets
// Before these packets are retuned they are processed by interceptors. For things
// Before these packets are returned they are processed by interceptors. For things
// like NACK this needs to be called.
go func() {
rtcpBuf := make([]byte, 1500)
Expand Down
2 changes: 1 addition & 1 deletion examples/insertable-streams/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func main() {
}

// Read incoming RTCP packets
// Before these packets are retuned they are processed by interceptors. For things
// Before these packets are returned they are processed by interceptors. For things
// like NACK this needs to be called.
go func() {
rtcpBuf := make([]byte, 1500)
Expand Down
2 changes: 1 addition & 1 deletion examples/play-from-disk-renegotation/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ func addVideo(w http.ResponseWriter, r *http.Request) {
}

// Read incoming RTCP packets
// Before these packets are retuned they are processed by interceptors. For things
// Before these packets are returned they are processed by interceptors. For things
// like NACK this needs to be called.
go func() {
rtcpBuf := make([]byte, 1500)
Expand Down
4 changes: 2 additions & 2 deletions examples/play-from-disk/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func main() {
}

// Read incoming RTCP packets
// Before these packets are retuned they are processed by interceptors. For things
// Before these packets are returned they are processed by interceptors. For things
// like NACK this needs to be called.
go func() {
rtcpBuf := make([]byte, 1500)
Expand Down Expand Up @@ -120,7 +120,7 @@ func main() {
}

// Read incoming RTCP packets
// Before these packets are retuned they are processed by interceptors. For things
// Before these packets are returned they are processed by interceptors. For things
// like NACK this needs to be called.
go func() {
rtcpBuf := make([]byte, 1500)
Expand Down
2 changes: 1 addition & 1 deletion examples/reflect/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func main() {
}

// Read incoming RTCP packets
// Before these packets are retuned they are processed by interceptors. For things
// Before these packets are returned they are processed by interceptors. For things
// like NACK this needs to be called.
go func() {
rtcpBuf := make([]byte, 1500)
Expand Down
2 changes: 1 addition & 1 deletion examples/rtp-to-webrtc/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func main() {
}

// Read incoming RTCP packets
// Before these packets are retuned they are processed by interceptors. For things
// Before these packets are returned they are processed by interceptors. For things
// like NACK this needs to be called.
go func() {
rtcpBuf := make([]byte, 1500)
Expand Down
2 changes: 1 addition & 1 deletion examples/simulcast/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func main() {
}

// Read incoming RTCP packets
// Before these packets are retuned they are processed by interceptors. For things
// Before these packets are returned they are processed by interceptors. For things
// like NACK this needs to be called.
processRTCP := func(rtpSender *webrtc.RTPSender) {
rtcpBuf := make([]byte, 1500)
Expand Down
2 changes: 1 addition & 1 deletion examples/swap-tracks/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ func main() { // nolint:gocognit
}

// Read incoming RTCP packets
// Before these packets are retuned they are processed by interceptors. For things
// Before these packets are returned they are processed by interceptors. For things
// like NACK this needs to be called.
go func() {
rtcpBuf := make([]byte, 1500)
Expand Down

0 comments on commit 4942778

Please sign in to comment.