From d702ddedcf427742431770b11b5470c78ea4c7fd Mon Sep 17 00:00:00 2001 From: Lachezar Lechev <8925621+elpiel@users.noreply.github.com> Date: Sat, 28 Aug 2021 11:03:29 +0300 Subject: [PATCH] osc-sender - fix link typo --- guide/src/tutorials/osc/osc-sender.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/src/tutorials/osc/osc-sender.md b/guide/src/tutorials/osc/osc-sender.md index 04849a5f5..3daa868f5 100644 --- a/guide/src/tutorials/osc/osc-sender.md +++ b/guide/src/tutorials/osc/osc-sender.md @@ -80,7 +80,7 @@ let target_addr = format!("{}:{}", "127.0.0.1", port); # } ``` -Lastly, we need to bind our OSC sender to the network socket. This isn't always successful, so we are attaching the `expect()`-method (read more about [expect here](https://doc.rust-lang.org/std/option/enum.Option.html# method.expect)) to post an error message if it is not successful. If it is successful, the `.connect(target_addr)`-method is used to connect the sender to the target address. Again, this may be unsuccesful so we use the `expect()`-method on the result of that operation as well. +Lastly, we need to bind our OSC sender to the network socket. This isn't always successful, so we are attaching the `expect()`-method (read more about [`expect()` here](https://doc.rust-lang.org/std/option/enum.Option.html#method.expect)) to post an error message if it is not successful. If it is successful, the `.connect(target_addr)`-method is used to connect the sender to the target address. Again, this may be unsuccesful so we use the `expect()`-method on the result of that operation as well. ```rust,no_run # #![allow(unused_variables)]