aboutsummaryrefslogtreecommitdiffstats
path: root/lua/conform/formatters/trim_whitespace.lua
diff options
context:
space:
mode:
authorSteven Arcangeli <stevearc@stevearc.com>2023-10-09 14:17:40 -0700
committerSteven Arcangeli <stevearc@stevearc.com>2023-10-09 14:17:57 -0700
commitb02363790c07200b7f087f65cd5021b71c3ebfb3 (patch)
tree431c1a7a71ffb7bc25f57e831875e3c4b08f6ec0 /lua/conform/formatters/trim_whitespace.lua
parent9bd169029ac7fac5d0b3899a47556549d113a4c2 (diff)
doc: enforce period at end of formatter description
Diffstat (limited to 'lua/conform/formatters/trim_whitespace.lua')
-rw-r--r--lua/conform/formatters/trim_whitespace.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/conform/formatters/trim_whitespace.lua b/lua/conform/formatters/trim_whitespace.lua
index 7178e0e..3bbd89e 100644
--- a/lua/conform/formatters/trim_whitespace.lua
+++ b/lua/conform/formatters/trim_whitespace.lua
@@ -2,7 +2,7 @@
return {
meta = {
url = "https://www.gnu.org/software/gawk/manual/gawk.html",
- description = "Trim whitespaces with awk",
+ description = "Trim whitespaces with awk.",
},
command = "awk",
args = { '{ sub(/[ \t]+$/, ""); print }' },