diff options
| author | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2020-04-07 07:21:12 +0200 |
|---|---|---|
| committer | Sandro Jäckel <sandro.jaeckel@gmail.com> | 2020-04-07 07:21:12 +0200 |
| commit | c3b6b91a620437c9ff30fd72042e1a0545b00e70 (patch) | |
| tree | 34e3729c94c895861d5f9711b323dbba5899c5b6 | |
| parent | 9e358f7c4b9536dd9fadd3fee3a52305b9a98364 (diff) | |
Fix typos
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | src/server/Utils.hx | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ Default channel example: http://synctube-example.herokuapp.com/ ### Setup
- Open `4200` port in your router settings (port is customizable)
-- `npm install ws` in this project folder ([NodeJS](https://nodejs.org) requred)
+- `npm install ws` in this project folder ([NodeJS](https://nodejs.org) required)
- Run `node build/server.js`
- Open showed "Local" link for yourself and send "Global" link to friends
diff --git a/src/server/Utils.hx b/src/server/Utils.hx index 9c88bc2..218184d 100644 --- a/src/server/Utils.hx +++ b/src/server/Utils.hx @@ -24,7 +24,7 @@ class Utils { final iface = Reflect.field(type, ifname); // skip over internal (i.e. 127.0.0.1) and non-ipv4 addresses if ('IPv4' != iface.family || iface.internal != false) continue; - // this interface has only one ipv4 adress + // this interface has only one ipv4 address return iface.address; } } |
