Skip to content

Commit

Permalink
C++ style: references to variables and functions.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfjlaros committed Jul 13, 2019
1 parent ddb921f commit 9d6b1fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Arduino.tcc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ inline String HardwareSerial::_inspect(void) {
/**
* Read a value with a basic type from the output buffer.
*
* @return A value of type T.
* @return A value of type @a T.
*/
template <class T>
T HardwareSerial::_inspect(void) {
Expand All @@ -57,7 +57,7 @@ T HardwareSerial::_inspect(void) {
/**
* Read any value from the output buffer.
*
* @return A value of type T.
* @return A value of type @a T.
*/
template <class T>
T HardwareSerial::inspect(void) {
Expand All @@ -69,7 +69,7 @@ T HardwareSerial::inspect(void) {
}

/**
* Recursion terminator for _prepare().
* Recursion terminator for @a _prepare().
*/
inline size_t HardwareSerial::_prepare(void) {
return 0;
Expand All @@ -96,7 +96,7 @@ size_t HardwareSerial::_prepare(const char* data, Args... args) {
/**
* Write a value of basic type to the input buffer.
*
* @param data A value of type T.
* @param data A value of type @a T.
* @param args Other parameters.
*
* @return Number of bytes written.
Expand Down

0 comments on commit 9d6b1fd

Please sign in to comment.