From 8b06c524d207f5e67ef22d6a1869c94d8f91717f Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 4 Mar 2022 10:29:53 +1100 Subject: Cleanup: spelling in comments, function name --- source/blender/editors/interface/interface_handlers.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/interface') diff --git a/source/blender/editors/interface/interface_handlers.c b/source/blender/editors/interface/interface_handlers.c index 80fef93faf8..dbb2ea1dd42 100644 --- a/source/blender/editors/interface/interface_handlers.c +++ b/source/blender/editors/interface/interface_handlers.c @@ -3903,8 +3903,8 @@ static void ui_do_but_textedit( char ascii = event->ascii; const char *utf8_buf = event->utf8_buf; - /* exception that's useful for number buttons, some keyboard - * numpads have a comma instead of a period */ + /* Exception that's useful for number buttons, some keyboard + * numpads have a comma instead of a period. */ if (ELEM(but->type, UI_BTYPE_NUM, UI_BTYPE_NUM_SLIDER)) { /* Could use `data->min`. */ if (event->type == EVT_PADPERIOD && ascii == ',') { ascii = '.'; -- cgit v1.2.3