Software / code / prosody
Comparison
plugins/mod_csi_simple.lua @ 11425:fc7706fe115d
mod_csi_simple: s/algoritm/algorithm/ [codespell]
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Fri, 05 Mar 2021 15:05:21 +0100 |
| parent | 11401:228bd43fbc3d |
| child | 11573:cb5748f94840 |
comparison
equal
deleted
inserted
replaced
| 11424:2358299bc928 | 11425:fc7706fe115d |
|---|---|
| 221 | 221 |
| 222 function module.command(arg) | 222 function module.command(arg) |
| 223 if arg[1] ~= "test" then | 223 if arg[1] ~= "test" then |
| 224 print("Usage: "..module.name.." test < test-stream.xml") | 224 print("Usage: "..module.name.." test < test-stream.xml") |
| 225 print(""); | 225 print(""); |
| 226 print("Provide a series of stanzas to test against importance algoritm"); | 226 print("Provide a series of stanzas to test against importance algorithm"); |
| 227 return 1; | 227 return 1; |
| 228 end | 228 end |
| 229 -- luacheck: ignore 212/self | 229 -- luacheck: ignore 212/self |
| 230 local xmppstream = require "util.xmppstream"; | 230 local xmppstream = require "util.xmppstream"; |
| 231 local input_session = { notopen = true } | 231 local input_session = { notopen = true } |