1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

examples/riot_and_cpp: fix typos

This commit is contained in:
Kaspar Schleiser 2019-10-23 21:23:14 +02:00
parent ee7aa411a2
commit c4989a4c7a
3 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@
* @{
*
* @file
* @brief Some functions implementaion in C.
* @brief Some functions implementation in C.
*
* @author DangNhat Pham-Huu <51002279@hcmut.edu.vn>
*

View File

@ -24,7 +24,7 @@
cpp_class::cpp_class()
{
printf("Instanciating Object [constructor called]\n");
printf("Instantiating Object [constructor called]\n");
greet();
}

View File

@ -77,7 +77,7 @@ int main()
return 0;
}
/* thread A function implemetation */
/* thread A function implementation */
void *threadA_func(void *)
{
int day = 13, month = 6, year = 2014;