aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2015-06-11 09:35:49 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2015-06-11 09:35:49 +0200
commit916ef52fff01aff0567f177e1739d5b6d59b51fc (patch)
treef41cada8e9fbd8685f8900e12d36c052aa11dc6f /doc
parentd93ba137f2cc69f3b544c5aa7ecc37651a7bc219 (diff)
parent6273aca9b1c1438e35f1a18881daabaf660ae2ad (diff)
merge
Diffstat (limited to 'doc')
-rw-r--r--doc/TopicMultithreading.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/TopicMultithreading.dox b/doc/TopicMultithreading.dox
index ba3547143..e22e1c613 100644
--- a/doc/TopicMultithreading.dox
+++ b/doc/TopicMultithreading.dox
@@ -14,7 +14,7 @@ You can control the number of thread that will be used using either the OpenMP A
omp_set_num_threads(n);
Eigen::setNbThreads(n);
\endcode
-Unless setNbThreads has been called, Eigen uses the number of threads specified by OpenMP. You can restore this bahavior by calling \code setNbThreads(0); \endcode
+Unless setNbThreads has been called, Eigen uses the number of threads specified by OpenMP. You can restore this behavior by calling \code setNbThreads(0); \endcode
You can query the number of threads that will be used with:
\code
n = Eigen::nbThreads( );