From 09b7d7f3dab0d50a44308cc1f86c427a1e8cd6b9 Mon Sep 17 00:00:00 2001 From: Reece Wilson Date: Tue, 5 Oct 2021 21:10:41 +0000 Subject: [PATCH] Normalize indentation in the readme --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 50e9000..c37af95 100644 --- a/README.md +++ b/README.md @@ -15,14 +15,14 @@ This library implements the macros required to define Aurora style interfaces. D #### In your public API: ``` - LIB_INTERFACE(IInputMouseSubscriber, - AUI_METHODS - ( - AUI_METHOD(void, onButtonPress, (AuUInt8, mb)), - AUI_METHOD(void, onButtonTick, (AuUInt8, mb)), - AUI_METHOD(void, onButtonUp, (AuUInt8, mb)) - ) - ); +LIB_INTERFACE(IInputMouseSubscriber, + AUI_METHODS + ( + AUI_METHOD(void, onButtonPress, (AuUInt8, mb)), + AUI_METHOD(void, onButtonTick, (AuUInt8, mb)), + AUI_METHOD(void, onButtonUp, (AuUInt8, mb)) + ) +); ``` #### In a dedicated translation unit: