summaryrefslogtreecommitdiff
path: root/framework/inc/threadhelp/readguard.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'framework/inc/threadhelp/readguard.hxx')
-rw-r--r--framework/inc/threadhelp/readguard.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/inc/threadhelp/readguard.hxx b/framework/inc/threadhelp/readguard.hxx
index 2db89a63f629..afdd17316f3c 100644
--- a/framework/inc/threadhelp/readguard.hxx
+++ b/framework/inc/threadhelp/readguard.hxx
@@ -33,7 +33,7 @@ namespace framework{
@descr This guard should be used to set a lock for reading object internal member.
Nobody can control it but don't use member after successfully locking for writing!
We never need a own mutex to safe our internal member access - because
- a guard is used as function-local member only. There exist no multithreaded access to it realy ...
+ a guard is used as function-local member only. There exist no multithreaded access to it really ...
@attention a) To prevent us against wrong using, the default ctor, copy ctor and the =operator are maked private!
b) Use interface "IRWLock" of set LockHelper only - because we must support a finer granularity of locking.