Skip to content

Commit deadc77

Browse files
committed
typo: constrexpr→constexpr
1 parent 034c367 commit deadc77

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

reference/vector/vector/insert.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
```cpp
88
iterator insert(iterator position, const T& x); // (1) C++03
99
iterator insert(const_iterator position, const T& x); // (1) C++11
10-
consrexpr iterator insert(const_iterator position, const T& x); // (1) C++20
10+
constexpr iterator insert(const_iterator position, const T& x); // (1) C++20
1111

1212
iterator insert(const_iterator position, T&& x); // (2) C++11
1313
constexpr iterator insert(const_iterator position, T&& x); // (2) C++20

0 commit comments

Comments
 (0)