]> git.lyx.org Git - lyx.git/blobdiff - src/support/mutex.h
Unbreak citing from bibliography environment
[lyx.git] / src / support / mutex.h
index 5f34f7de514f3161d27ba3d6682b114e54a07a20..99b83e3a3dcccc526c481ff35ea9514afa6663f5 100644 (file)
@@ -27,12 +27,12 @@ class Mutex
 public:
        Mutex();
        ~Mutex();
-       
+
        /// Scope based locking:
        /// Usage:
        /// >>> unlocked
-       /// { 
-       ///     Mutex::Locker locker(a_Mutex_ptr);  
+       /// {
+       ///     Mutex::Locker locker(a_Mutex_ptr);
        ///     >>> locked
        /// }
        /// >>> unlocked