From 13645134a6015c7a38330f8850dde20b8909bece Mon Sep 17 00:00:00 2001 From: fluxionary <25628292+fluxionary@users.noreply.github.com> Date: Mon, 7 Nov 2022 11:00:35 -0800 Subject: [PATCH] Fix comma typos (#27) --- moremesecons_adjustable_player_detector/init.lua | 2 +- moremesecons_entity_detector/init.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/moremesecons_adjustable_player_detector/init.lua b/moremesecons_adjustable_player_detector/init.lua index 4cab0b7..672f87e 100644 --- a/moremesecons_adjustable_player_detector/init.lua +++ b/moremesecons_adjustable_player_detector/init.lua @@ -4,7 +4,7 @@ local function make_formspec(meta) meta:set_string("formspec", "size[9,5]" .. - "field[0.3, 0;9,2;scanname;Coma-separated list of the names of players to scan for (empty for any):;${scanname}]".. + "field[0.3, 0;9,2;scanname;Comma-separated list of the names of players to scan for (empty for any):;${scanname}]".. "field[0.3,1.5;4,2;digiline_channel;Digiline Channel (optional):;${digiline_channel}]".. "field[0.3,3;4,2;radius;Detection radius:;${radius}]".. "button_exit[3.5,3.5;2,3;;Save]") diff --git a/moremesecons_entity_detector/init.lua b/moremesecons_entity_detector/init.lua index 0aacfe2..d2badb1 100644 --- a/moremesecons_entity_detector/init.lua +++ b/moremesecons_entity_detector/init.lua @@ -4,7 +4,7 @@ local function make_formspec(meta) meta:set_string("formspec", "size[9,5]" .. - "field[0.3, 0;9,2;scanname;Coma-separated list of the names (itemstring) of entities to scan for (empty for any):;${scanname}]".. + "field[0.3, 0;9,2;scanname;Comma-separated list of the names (itemstring) of entities to scan for (empty for any):;${scanname}]".. "field[0.3,1.5;4,2;digiline_channel;Digiline Channel (optional):;${digiline_channel}]".. "field[0.3,3;2,2;radius;Detection radius:;${radius}]".. "button_exit[3.5,3.5;2,3;;Save]")