util.ip: Reflow metatable
authorKim Alvefur <zash@zash.se>
Fri, 01 Dec 2017 01:55:15 +0100
changeset 8431 ca44e462322c
parent 8430 1371518f70ff
child 8432 b3562a1b1caa
util.ip: Reflow metatable
util/ip.lua
--- a/util/ip.lua	Wed Nov 29 08:02:14 2017 +0100
+++ b/util/ip.lua	Fri Dec 01 01:55:15 2017 +0100
@@ -6,9 +6,15 @@
 --
 
 local ip_methods = {};
-local ip_mt = { __index = function (ip, key) return (ip_methods[key])(ip); end,
-		__tostring = function (ip) return ip.addr; end,
-		__eq = function (ipA, ipB) return ipA.addr == ipB.addr; end};
+
+local ip_mt = {
+	__index = function (ip, key)
+		return ip_methods[key](ip);
+	end,
+	__tostring = function (ip) return ip.addr; end,
+	__eq = function (ipA, ipB) return ipA.addr == ipB.addr; end
+};
+
 local hex2bits = {
 	["0"] = "0000", ["1"] = "0001", ["2"] = "0010", ["3"] = "0011",
 	["4"] = "0100", ["5"] = "0101", ["6"] = "0110", ["7"] = "0111",