2
0
mirror of https://github.com/boostorg/ublas.git synced 2026-02-20 15:12:16 +00:00
* fixed typos

* need still some time to think about the "is mutable" comment

svn path=/trunk/libs/numeric/ublas/; revision=50917
This commit is contained in:
Gunter Winkler
2009-01-30 21:19:38 +00:00
parent 8dc506c1f6
commit e427983211

View File

@@ -110,7 +110,7 @@ Dense Vector ONLY. The type of underlying storage array used to store the elemen
<td>Storage</td>
<td><code>v.data()</code></td>
<td><code>v</code> is mutable and Dense.</td>
<td><code>array_type&amp;</code> if a is mutable, <code>const array_type&amp;</code> otherwise</td>
<td><code>array_type&amp;</code> if <code>v</code> is mutable, <code>const array_type&amp;</code> otherwise</td>
</tr>
</tbody>
</table>
@@ -307,7 +307,7 @@ following expressions must be valid.</p>
<td>Storage</td>
<td><code>m.data()</code></td>
<td><code>m</code> is mutable and Dense.</td>
<td><code>array_type&amp;</code> if a is mutable, <code>const array_type&amp;</code> otherwise</td>
<td><code>array_type&amp;</code> if <code>m</code> is mutable, <code>const array_type&amp;</code> otherwise</td>
</tr>
</tbody>
</table>