Skip to content

Commit

Permalink
chore(docs) reduce tab-size in docs for readability
Browse files Browse the repository at this point in the history
  • Loading branch information
Tieske committed Nov 9, 2021
1 parent 770da7a commit 3aaab29
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/config.ld
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,4 @@ topics = {

format = "markdown"
plain = true
style = true
1 change: 1 addition & 0 deletions docs/ldoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,7 @@ pre {
margin: 10px 0 10px 0;
overflow: auto;
font-family: "Andale Mono", monospace;
tab-size: 2;
}

pre.example {
Expand Down
2 changes: 1 addition & 1 deletion mqtt/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ function mqtt.topic_match(topic, opts)
return false, "expected topic to be a string"
end
if type(opts) ~= "table" then
return false, "expected optionss to be a table"
return false, "expected options to be a table"
end
local pattern = opts.pattern
if not pattern then
Expand Down

0 comments on commit 3aaab29

Please sign in to comment.