Skip to content

Commit

Permalink
Fix some documentation comments
Browse files Browse the repository at this point in the history
  • Loading branch information
efondere committed Jun 4, 2023
1 parent 4c38a89 commit d6375ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ArduinoExtra/Functional.h
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
*
* @copyright Copyright (c) 2023 Vanier Robotics (MIT License)
*
* @example
* Example Usage:
* @code
* class ExampleClass
* {
* public:
Expand Down Expand Up @@ -45,6 +46,7 @@
* aex::Function<void()> exampleFunction2([]() -> void { Serial.println("Lambda Function"); };
* exampleFunction2(); // Will write "Lambda Function" to the console
* }
* @endcode
*/

#ifndef _INCLUDE_AEX_FUNCTIONAL_H_
Expand All @@ -57,6 +59,8 @@ namespace aex

/**
* @brief Allow for template specialization of the Function class
*
* @see Function<R(Args...)>
*/
template<class... Args> class Function;

Expand All @@ -66,7 +70,7 @@ namespace priv
/**
* @brief Allow for template specialization of the Callable classes
*
* @todo: Add a callable for const functions?
* Todo: Add a callable for const functions?
*/
template<class...> class Callable;
template<class...> class FunctionCallable;
Expand Down

0 comments on commit d6375ec

Please sign in to comment.