From b60480fac048e8cd91a72e5a007966490c6000f9 Mon Sep 17 00:00:00 2001 From: "DrZiplok@gmail.com" Date: Sun, 30 Jan 2011 20:13:07 +0000 Subject: [PATCH] Minor whitespace fixes. git-svn-id: https://arducopter.googlecode.com/svn/trunk@1577 f9c3cf11-9bcb-44bc-f272-b75c42450872 --- libraries/AP_Common/include/menu.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libraries/AP_Common/include/menu.h b/libraries/AP_Common/include/menu.h index 42d135aa53..86d7273955 100644 --- a/libraries/AP_Common/include/menu.h +++ b/libraries/AP_Common/include/menu.h @@ -29,7 +29,7 @@ public: /// separated into these structures. /// /// If the argument cannot be parsed as a float or a long, the value - /// of f or i respectively is undefined. You should range-check + /// of f or i respectively is undefined. You should range-check /// the inputs to your function. /// struct arg { @@ -62,7 +62,7 @@ public: /// If this function returns false, the menu exits. /// typedef bool (*preprompt)(void); - + /// menu command description /// struct command { @@ -98,7 +98,7 @@ public: /// menu runner void run(void); - + private: /// Implements the default 'help' command. /// @@ -133,7 +133,7 @@ private: #define MENU(name, prompt, commands) \ static const char __menu_name__ ##name[] PROGMEM = prompt; \ static Menu name(__menu_name__ ##name, commands, sizeof(commands) / sizeof(commands[0])) - + #define MENU2(name, prompt, commands, preprompt) \ static const char __menu_name__ ##name[] PROGMEM = prompt; \ static Menu name(__menu_name__ ##name, commands, sizeof(commands) / sizeof(commands[0]), preprompt)