From f7e97a70e361812b2cd24a5f8742c2628b4b50f3 Mon Sep 17 00:00:00 2001 From: john30 Date: Sat, 18 Feb 2017 14:03:50 +0100 Subject: [PATCH] fixed documentation --- src/ebusd/bushandler.h | 2 +- src/ebusd/mainloop.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ebusd/bushandler.h b/src/ebusd/bushandler.h index dd9e3674..ae80f77b 100644 --- a/src/ebusd/bushandler.h +++ b/src/ebusd/bushandler.h @@ -420,7 +420,7 @@ class BusHandler : public WaitThread { /** * Initiate a scan of the slave addresses. * @param full true for a full scan (all slaves), false for scanning only already seen slaves. - * @param level the current user's access levels. + * @param levels the current user's access levels. * @return the result code. */ result_t startScan(bool full, string levels); diff --git a/src/ebusd/mainloop.h b/src/ebusd/mainloop.h index c5873e9a..8419311a 100644 --- a/src/ebusd/mainloop.h +++ b/src/ebusd/mainloop.h @@ -175,7 +175,7 @@ class MainLoop : public Thread, DeviceListener { /** * Execute the write command. * @param args the arguments passed to the command (starting with the command itself), or empty for help. - * @param level the current user's access levels. + * @param levels the current user's access levels. * @return the result string. */ string executeWrite(vector &args, const string levels); @@ -190,7 +190,7 @@ class MainLoop : public Thread, DeviceListener { /** * Execute the find command. * @param args the arguments passed to the command (starting with the command itself), or empty for help. - * @param level the current user's access levels. + * @param levels the current user's access levels. * @return the result string. */ string executeFind(vector &args, string levels); @@ -220,7 +220,7 @@ class MainLoop : public Thread, DeviceListener { /** * Execute the scan command. * @param args the arguments passed to the command (starting with the command itself), or empty for help. - * @param level the current user's access levels. + * @param levels the current user's access levels. * @return the result string. */ string executeScan(vector &args, const string levels);