Skip to content

Commit 4c04a11

Browse files
Update cbegin.md
1 parent 6d9ab86 commit 4c04a11

File tree

1 file changed

+1
-1
lines changed
  • content/cpp/concepts/unordered-set/terms/cbegin

1 file changed

+1
-1
lines changed

content/cpp/concepts/unordered-set/terms/cbegin/cbegin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ CatalogContent:
1313
- 'paths/computer-science'
1414
---
1515

16-
The **`cbegin()`** method returns a constant iterator that points to the first element of an `std::unordered_set`. A constant iterator allows read-only access to elements and prevents modification. Because `unordered_set` does not maintain any defined order, the element returned by `cbegin()` depends on its internal hash table structure.
16+
The **`cbegin()`** method returns a constant iterator that points to the first element of an [`std::unordered_set`](https://www.codecademy.com/resources/docs/cpp/unordered-set). A constant iterator allows read-only access to elements and prevents modification. Because `unordered_set` does not maintain any defined order, the element returned by `cbegin()` depends on its internal hash table structure.
1717

1818
## Syntax
1919

0 commit comments

Comments
 (0)