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 | 2b4028fd7e707dc56356330366829f1c93e2d952 (patch) | |
tree | f203c31ee782eafe44f4eb41322be9f4d3db3293 | |
parent | 4707d5665df4179e0b02a520ff36ad51a7b9d9be (diff) | |
download | prosody-2b4028fd7e707dc56356330366829f1c93e2d952.tar.gz prosody-2b4028fd7e707dc56356330366829f1c93e2d952.zip |
util.pposix: Fix typo in comment
-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; |