aboutsummaryrefslogtreecommitdiff
path: root/doc/HiPerformance.dox
diff options
context:
space:
mode:
Diffstat (limited to 'doc/HiPerformance.dox')
-rw-r--r--doc/HiPerformance.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/HiPerformance.dox b/doc/HiPerformance.dox
index ab6cdfd44..9cee3351c 100644
--- a/doc/HiPerformance.dox
+++ b/doc/HiPerformance.dox
@@ -105,7 +105,7 @@ m1.noalias() += m2 * m3; \endcode</td>
<td>First of all, here the .noalias() in the first expression is useless because
m2*m3 will be evaluated anyway. However, note how this expression can be rewritten
so that no temporary is required. (tip: for very small fixed size matrix
- it is slighlty better to rewrite it like this: m1.noalias() = m2 * m3; m1 += m4;</td>
+ it is slightly better to rewrite it like this: m1.noalias() = m2 * m3; m1 += m4;</td>
</tr>
<tr class="alt">
<td>\code