$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r80464 - trunk/libs/thread/doc
From: vicente.botet_at_[hidden]
Date: 2012-09-09 09:09:15
Author: viboes
Date: 2012-09-09 09:09:15 EDT (Sun, 09 Sep 2012)
New Revision: 80464
URL: http://svn.boost.org/trac/boost/changeset/80464
Log:
Thread: fix typo s/Rational/Rationale/
Text files modified: 
   trunk/libs/thread/doc/tss.qbk |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/libs/thread/doc/tss.qbk
==============================================================================
--- trunk/libs/thread/doc/tss.qbk	(original)
+++ trunk/libs/thread/doc/tss.qbk	2012-09-09 09:09:15 EDT (Sun, 09 Sep 2012)
@@ -47,7 +47,7 @@
 `boost::thread` unless `boost::on_thread_exit()` is called manually
 from that thread.
 
-[heading Rational about the nature of the key]
+[heading Rationale about the nature of the key]
 
 Boost.Thread uses the address of the `thread_specific_ptr` instance as key of the thread specific pointers. This avoids to create/destroy a key which will need a lock to protect from race conditions. This has a little performance liability, as the access must be done using an associative container.