diff options
| -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; } } |
