fix(dial): remove unnecessary blank lines for cleaner code

This commit is contained in:
Rubin Bhandari 2025-11-24 23:26:46 +05:45
parent bc0848b378
commit 59322c2aae
No known key found for this signature in database

View file

@ -53,7 +53,6 @@ return {
cyclic = true, cyclic = true,
}) })
local months = augend.constant.new({ local months = augend.constant.new({
elements = { elements = {
"January", "January",
@ -73,7 +72,6 @@ return {
cyclic = true, cyclic = true,
}) })
return { return {
dials_by_ft = { dials_by_ft = {
css = "css", css = "css",
@ -95,7 +93,7 @@ return {
augend.integer.alias.decimal_int, -- nonnegative and negative decimal number augend.integer.alias.decimal_int, -- nonnegative and negative decimal number
augend.integer.alias.hex, -- nonnegative hex number (0x01, 0x1a1f, etc.) augend.integer.alias.hex, -- nonnegative hex number (0x01, 0x1a1f, etc.)
augend.date.alias["%Y/%m/%d"], -- date (2022/02/19, etc.) augend.date.alias["%Y/%m/%d"], -- date (2022/02/19, etc.)
augend.alias.en_weekday, -- Mon, Tue, ..., Sat, Sun augend.constant.alias.en_weekday, -- Mon, Tue, ..., Sat, Sun
augend.constant.alias.en_weekday_full, -- Monday, Tuesday, ..., Saturday, Sunday augend.constant.alias.en_weekday_full, -- Monday, Tuesday, ..., Saturday, Sunday
ordinal_numbers, ordinal_numbers,
months, months,