Skip to content

Commit

Permalink
Editorial fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Kinsner authored Dec 22, 2023
1 parent 55e878f commit 0872bf9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions adoc/chapters/programming_interface.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -17928,29 +17928,29 @@ a@
----
iterator begin()
----
a@ Returns an iterator referring to the first element stored within the [code]#v# [code]#marray#.
a@ Returns an iterator referring to the first element stored within the [code]#marray#.

a@
[source]
----
const_iterator begin() const
----
a@ Returns a const iterator referring to the first element stored within the [code]#v# [code]#marray#.
a@ Returns a const iterator referring to the first element stored within the [code]#marray#.

a@
[source]
----
iterator end()
----
a@ Returns an iterator referring to the one past the last element stored within the [code]#v# [code]#marray#.
a@ Returns an iterator referring to the one past the last element stored within the [code]#marray#.

a@
[source]
----
const_iterator end() const
----
a@ Returns a const iterator referring to the one past the last
element stored within the [code]#v# [code]#marray#.
element stored within the [code]#marray#.

|====

Expand Down

0 comments on commit 0872bf9

Please sign in to comment.