Skip to content

Commit fc7e422

Browse files
authored
Apply suggestion from @avdhoottt
1 parent b737be7 commit fc7e422

File tree

1 file changed

+1
-1
lines changed
  • content/cpp/concepts/deque/terms/size

1 file changed

+1
-1
lines changed

content/cpp/concepts/deque/terms/size/size.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ int main() {
114114

115115
### 1. What does `size()` do in C++?
116116

117-
The `size()` function in C++ returns the number of elements present in a container, such as a `std::deque`, `std::vector`, or `std::string`. It gives the current length of the container in constant time (O(1)) without modifying it.
117+
The `size()` function in C++ returns the number of elements present in a container, such as a `std::deque`, `std::vector`, or `std::string`. It gives the current length of the container in constant time (`O(1)`) without modifying it.
118118

119119
### 2. What is a deque function in C++?
120120

0 commit comments

Comments
 (0)