# HG changeset patch
# User Kim Alvefur <zash@zash.se>
# Date 1517756497 -3600
# Node ID c3a039972b7415eeb3e8f5b4a1edce5a14b0fab1
# Parent  178b8abf8283ecbb23d0d33d09cb593b6cc7c1ec
mod_statsd: Fix typo in comment [codespell]

diff -r 178b8abf8283 -r c3a039972b74 mod_statsd/mod_statsd.lua
--- a/mod_statsd/mod_statsd.lua	Sun Feb 04 16:00:51 2018 +0100
+++ b/mod_statsd/mod_statsd.lua	Sun Feb 04 16:01:37 2018 +0100
@@ -15,7 +15,7 @@
 local sock = socket.udp()
 sock:setpeername(options.hostname or "127.0.0.1", options.port or 8125)
 
--- Metrics are namespaced by ".", and seperated by newline
+-- Metrics are namespaced by ".", and separated by newline
 function clean(s) return (s:gsub("[%.:\n]", "_")) end
 
 -- A 'safer' send function to expose