From 36c6b2e893b89f6b378f60fb975f73d47b248027 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 13 Dec 2021 16:22:20 +1100 Subject: Cleanup: spelling in comments Also move notes about where noise functions come from into the function body as it's not relavant to the public doc-string. --- source/blender/windowmanager/wm_event_types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/windowmanager/wm_event_types.h') diff --git a/source/blender/windowmanager/wm_event_types.h b/source/blender/windowmanager/wm_event_types.h index c175c211db6..437bd1057c2 100644 --- a/source/blender/windowmanager/wm_event_types.h +++ b/source/blender/windowmanager/wm_event_types.h @@ -405,7 +405,7 @@ enum { #define _VA_IS_EVENT_MOD4(v, a, b, c) (_VA_IS_EVENT_MOD3(v, a, b) || ((v)->c)) #define _VA_IS_EVENT_MOD5(v, a, b, c, d) (_VA_IS_EVENT_MOD4(v, a, b, c) || ((v)->d)) -/* reusable IS_EVENT_MOD(event, shift, ctrl, alt, oskey), macro */ +/** Reusable `IS_EVENT_MOD(event, shift, ctrl, alt, oskey)` macro. */ #define IS_EVENT_MOD(...) VA_NARGS_CALL_OVERLOAD(_VA_IS_EVENT_MOD, __VA_ARGS__) enum eEventType_Mask { -- cgit v1.2.3