diff --git a/doc/matrix.htm b/doc/matrix.htm index 7dfee5a7..8b4d6ff3 100644 --- a/doc/matrix.htm +++ b/doc/matrix.htm @@ -190,13 +190,13 @@ scalar. Swaps the contents of the matrices. -void insert (size_type i, size_type j, const_reference +void insert_element (size_type i, size_type j, const_reference t) Inserts the value t at the j-th element of the i-th row. -void erase (size_type i, size_type j) +void erase_element (size_type i, size_type j) Erases the value at the j-th element of the i-th row. diff --git a/doc/vector.htm b/doc/vector.htm index 5e07df6e..fd6175fe 100644 --- a/doc/vector.htm +++ b/doc/vector.htm @@ -265,13 +265,13 @@ scalar. Swaps the contents of the vectors. -void insert (size_type i, const_reference t) +void insert_element (size_type i, const_reference t) Vector Inserts the value t at the i-th element. -void erase (size_type i) +void erase_element (size_type i) Vector Erases the value at the i-th element.