From 4e068bc1a400026d78a030a21280f29af814b455 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Sun, 15 Jan 2017 12:04:43 +0100 Subject: [PATCH] doc: core: fix formatting --- core/include/thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/include/thread.h b/core/include/thread.h index 17e51dea2..6b1afc9cb 100644 --- a/core/include/thread.h +++ b/core/include/thread.h @@ -87,7 +87,7 @@ * * Reading from the top down, you can see that first, stack memory for our thread * `rcv_thread` is preallocated, followed by an implementation of the thread's - * function. Communication between threads is done using @ref core_msg: in this + * function. Communication between threads is done using @ref core_msg. In this * case, `rcv_thread` will print the process id of each thread that sent a * message to `rcv_thread`. *