diff options
author | Kim Alvefur <zash@zash.se> | 2017-02-26 20:31:08 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-02-26 20:31:08 +0100 |
commit | ecf80c11c121897db214af739b89408ec90720d0 (patch) | |
tree | f203c31ee782eafe44f4eb41322be9f4d3db3293 /util-src | |
parent | c6898e082b841e0f6048b77202cdf6f1733ba3fe (diff) | |
download | prosody-ecf80c11c121897db214af739b89408ec90720d0.tar.gz prosody-ecf80c11c121897db214af739b89408ec90720d0.zip |
util.pposix: Fix typo in comment
Diffstat (limited to 'util-src')
-rw-r--r-- | util-src/pposix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-src/pposix.c b/util-src/pposix.c index 5e21be56..10edbd71 100644 --- a/util-src/pposix.c +++ b/util-src/pposix.c @@ -615,7 +615,7 @@ int lc_getrlimit(lua_State *L) { return 2; } } else { - /* Unsupported resoucrce. Sorry I'm pretty limited by POSIX standard. */ + /* Unsupported resource. Sorry I'm pretty limited by POSIX standard. */ lua_pushboolean(L, 0); lua_pushstring(L, "invalid-resource"); return 2; |