summaryrefslogtreecommitdiff
path: root/salhelper/inc/salhelper/singletonref.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'salhelper/inc/salhelper/singletonref.hxx')
-rw-r--r--salhelper/inc/salhelper/singletonref.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/salhelper/inc/salhelper/singletonref.hxx b/salhelper/inc/salhelper/singletonref.hxx
index 23fe45e5b587..837fb98b789e 100644
--- a/salhelper/inc/salhelper/singletonref.hxx
+++ b/salhelper/inc/salhelper/singletonref.hxx
@@ -55,10 +55,10 @@ namespace salhelper{
@attention To prevent the code against race conditions, its not
allowed to start operations inside the ctor
- of the internal wrapped object - especialy operations
+ of the internal wrapped object - especially operations
which needs a reference to the same singleton too.
- The only chance to supress such strange constellations
+ The only chance to suppress such strange constellations
is a lazy-init mechanism.
<ul>
@@ -70,7 +70,7 @@ namespace salhelper{
Note further that this singleton pattern can work only, if
all user of such singleton are located inside the same library!
- Because static values cant be exported - e.g. from windows libraries.
+ Because static values can't be exported - e.g. from windows libraries.
*/
template< class SingletonClass >
class SingletonRef