From e73b26d0217f33efdb8019fb4e05154de56998ad Mon Sep 17 00:00:00 2001 From: AntonC9018 Date: Sun, 5 Sep 2021 16:36:41 +0300 Subject: [PATCH] Undo parentheses for function symbols --- simpledisplay.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/simpledisplay.d b/simpledisplay.d index 9a37d97..a01d709 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -4587,7 +4587,7 @@ class NotificationAreaIcon : CapableOfHandlingNativeEvent { } version(X11) -/// Call `XFreePixmap()` on the return value. +/// Call `XFreePixmap` on the return value. Pixmap transparencyMaskFromMemoryImage(MemoryImage i, Window window) { char[] data = new char[](i.width * i.height / 8 + 2); data[] = 0; @@ -6045,7 +6045,7 @@ version(Windows) { return id; } - /// Platform-specific for Windows. Unregisters a key. The id is the value returned by `registerHotKey()`. + /// Platform-specific for Windows. Unregisters a key. The id is the value returned by `registerHotKey`. void unregisterHotKey(SimpleWindow window, int id) { if(!UnregisterHotKey(window.impl.hwnd, id)) throw new Exception("UnregisterHotKey");