Skip to content

Commit 85b448b

Browse files
authored
Merge pull request #5226 from Rageking8/remove-use-of-code-block-language-unstlib
Remove use of code block language `unstlib`
2 parents 5a19b62 + ae2a27a commit 85b448b

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)