diff options
author | Kim Alvefur <zash@zash.se> | 2021-11-30 22:04:00 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-11-30 22:04:00 +0100 |
commit | bdea7033a7b22fa0de69a93293f2d20c9db24788 (patch) | |
tree | 63949d8db70d0769e622d5089fc3975792750bb0 /util | |
parent | 61348c0a7dba3522ee0a8f24467fb64538b1ec97 (diff) | |
download | prosody-bdea7033a7b22fa0de69a93293f2d20c9db24788.tar.gz prosody-bdea7033a7b22fa0de69a93293f2d20c9db24788.zip |
util.dependencies: Fix typo (thanks jonas’)
vim> Change "sevral" to:
1 "several"
2 "sacral"
3 "spiral"
4 "feral"
5 "serial"
jonas’> I choose 4.
Diffstat (limited to 'util')
-rw-r--r-- | util/dependencies.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dependencies.lua b/util/dependencies.lua index 7e5b4e58..5227f378 100644 --- a/util/dependencies.lua +++ b/util/dependencies.lua @@ -156,7 +156,7 @@ local function log_warnings() if _VERSION > "Lua 5.4" then prosody.log("warn", "Support for %s is experimental, please report any issues", _VERSION); elseif _VERSION < "Lua 5.2" then - prosody.log("warn", "%s has sevral issues and support is being phased out, consider upgrading", _VERSION); + prosody.log("warn", "%s has several issues and support is being phased out, consider upgrading", _VERSION); end local ssl = softreq"ssl"; if ssl then |