From e42798321175c598ff6bf4e0ffd331dd3d7a8516 Mon Sep 17 00:00:00 2001
From: Gunter Winkler
Date: Fri, 30 Jan 2009 21:19:38 +0000
Subject: [PATCH] * see #2691
* fixed typos
* need still some time to think about the "is mutable" comment
svn path=/trunk/libs/numeric/ublas/; revision=50917
---
doc/container_concept.htm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/doc/container_concept.htm b/doc/container_concept.htm
index 2613b6fe..141f4e1a 100644
--- a/doc/container_concept.htm
+++ b/doc/container_concept.htm
@@ -110,7 +110,7 @@ Dense Vector ONLY. The type of underlying storage array used to store the elemen
| Storage |
v.data() |
v is mutable and Dense. |
-array_type& if a is mutable, const array_type& otherwise |
+array_type& if v is mutable, const array_type& otherwise |
@@ -307,7 +307,7 @@ following expressions must be valid.
Storage |
m.data() |
m is mutable and Dense. |
-array_type& if a is mutable, const array_type& otherwise |
+array_type& if m is mutable, const array_type& otherwise |