Private
Public Access
2
0

uart.hpp: fix typo in setNonBlocking() function name

Signed-off-by: Alex Tereschenko <alext.mkrs@gmail.com>
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Alex Tereschenko
2016-10-16 16:43:21 +02:00
committed by Brendan Le Foll
parent 6fda865af7
commit ccc4185eff

View File

@@ -263,7 +263,7 @@ class Uart
* @return Result of operation
*/
Result
SetNonBlocking(bool nonblock)
setNonBlocking(bool nonblock)
{
return (Result) mraa_uart_set_non_blocking(m_uart, nonblock);
}