From f63a066b98039663ff35d21fd42a66eb143d93ab Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 29 Mar 2020 15:53:48 +0200 Subject: [PATCH] Fixed typos --- MANUAL | 2 +- thread.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MANUAL b/MANUAL index 1086add6..906b065d 100644 --- a/MANUAL +++ b/MANUAL @@ -1131,7 +1131,7 @@ Version 2.4 The time (in milliseconds) between two subsequent key presses generated by the remote control's repeat function. If the remote control in use has a repeat delta that is - longer than that given in this parameter, that longer delay + longer than that given in this parameter, that longer delta will prevail. Initial channel = The channel ID of the channel that shall be tuned to when VDR starts. Default is empty, which means that it will diff --git a/thread.h b/thread.h index 790c29a8..5c351bfa 100644 --- a/thread.h +++ b/thread.h @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: thread.h 4.4 2018/03/04 11:27:55 kls Exp $ + * $Id: thread.h 4.5 2020/03/29 15:53:48 kls Exp $ */ #ifndef __THREAD_H @@ -33,7 +33,7 @@ public: bool Wait(int TimeoutMs = 0); ///< Waits at most TimeoutMs milliseconds for a call to Signal(), or ///< forever if TimeoutMs is 0. - ///< Returns true if Signal() has been called, false it the given + ///< Returns true if Signal() has been called, false if the given ///< timeout has expired. void Signal(void); ///< Signals a caller of Wait() that the condition it is waiting for is met.