Unnamed repository; edit this file 'description' to name the repository.
fix off-by-one git-commit rulers (#7072)
Characters should maximally reside *inside* the ruler, not on top of it.
| -rw-r--r-- | languages.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/languages.toml b/languages.toml index 21fe917f..02454889 100644 --- a/languages.toml +++ b/languages.toml @@ -1245,7 +1245,7 @@ roots = [] file-types = ["COMMIT_EDITMSG"] comment-token = "#" indent = { tab-width = 2, unit = " " } -rulers = [50, 72] +rulers = [51, 73] text-width = 72 [[grammar]] |