Skip to content

Commit ae2a27a

Browse files
authored
Remove use of code block language unstlib
1 parent 56a5ce8 commit ae2a27a

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/standard-library/deque-class.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ Arranges elements of a given type in a linear arrangement and, like a vector, en
1111

1212
## Syntax
1313

14-
```unstlib
15-
template <class Type, class Allocator =allocator<Type>>
16-
class deque
14+
```cpp
15+
template <class Type, class Allocator = allocator<Type>>
16+
class deque;
1717
```
1818
1919
### Parameters
@@ -1634,7 +1634,7 @@ int main( )
16341634
16351635
Provides a pointer to an element in a [`deque`](../standard-library/deque-class.md).
16361636
1637-
```unstlib
1637+
```cpp
16381638
typedef typename Allocator::pointer pointer;
16391639
```
16401640

0 commit comments

Comments
 (0)