From c4989a4c7a7194f99992339eb07cf67d5fd01941 Mon Sep 17 00:00:00 2001 From: Kaspar Schleiser Date: Wed, 23 Oct 2019 21:23:14 +0200 Subject: [PATCH] examples/riot_and_cpp: fix typos --- examples/riot_and_cpp/c_functions.c | 2 +- examples/riot_and_cpp/cpp_class.cpp | 2 +- examples/riot_and_cpp/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/riot_and_cpp/c_functions.c b/examples/riot_and_cpp/c_functions.c index e5681cc5fc..65f6e685f5 100644 --- a/examples/riot_and_cpp/c_functions.c +++ b/examples/riot_and_cpp/c_functions.c @@ -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> * diff --git a/examples/riot_and_cpp/cpp_class.cpp b/examples/riot_and_cpp/cpp_class.cpp index 1da85f0a4a..1090de8150 100644 --- a/examples/riot_and_cpp/cpp_class.cpp +++ b/examples/riot_and_cpp/cpp_class.cpp @@ -24,7 +24,7 @@ cpp_class::cpp_class() { - printf("Instanciating Object [constructor called]\n"); + printf("Instantiating Object [constructor called]\n"); greet(); } diff --git a/examples/riot_and_cpp/main.cpp b/examples/riot_and_cpp/main.cpp index 6bca2c4ab7..d228616f92 100644 --- a/examples/riot_and_cpp/main.cpp +++ b/examples/riot_and_cpp/main.cpp @@ -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;