diff --git a/doc/acknowledgements.xml b/doc/acknowledgements.xml
index 9fce412a..f9889592 100644
--- a/doc/acknowledgements.xml
+++ b/doc/acknowledgements.xml
@@ -15,11 +15,11 @@ last-revision="$Date$">
,
thread_pool
,
- rw_mutex
+ read_write_mutex
,
- rw_try_mutex
+ read_write_try_mutex
and
- rw_timed_mutex
+ read_write_timed_mutex
classes.
Important contributions were also made by Jeremy Siek (lots of input
on the design and on the implementation), Alexander Terekhov (lots of input
diff --git a/doc/concepts.xml b/doc/concepts.xml
index f1f92755..43a418c4 100644
--- a/doc/concepts.xml
+++ b/doc/concepts.xml
@@ -1354,7 +1354,7 @@
- M::scoped_rw_lock
+ M::scoped_read_write_lockA type meeting the
ScopedReadWriteLock
requirements.
@@ -1387,7 +1387,7 @@
- M::scoped_try_rw_lock
+ M::scoped_try_read_write_lockA type meeting the
ScopedTryReadWriteLock
requirements.
@@ -1420,7 +1420,7 @@
- M::scoped_timed_rw_lock
+ M::scoped_timed_read_write_lockA type meeting the
ScopedTimedReadWriteLock
requirements.
diff --git a/doc/reference.xml b/doc/reference.xml
index 2b06ec66..1779b072 100644
--- a/doc/reference.xml
+++ b/doc/reference.xml
@@ -13,7 +13,7 @@
-
+
diff --git a/test/Jamfile b/test/Jamfile
index bc64bf7a..549371c4 100644
--- a/test/Jamfile
+++ b/test/Jamfile
@@ -52,7 +52,7 @@ import testing ;
[ run test_once.cpp test ]
[ run test_xtime.cpp test ]
[ run test_barrier.cpp test ]
-# [ run test_rw_mutex.cpp test ]
+# [ run test_read_write_mutex.cpp test ]
[ run test_thread_pool.cpp test ]
;
}