Skip to content

Commit d99360d

Browse files
authored
Replace the bogus "operator 0-" with the intended "operator[]"
1 parent fb540c2 commit d99360d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/standard-library/map-class.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1837,7 +1837,7 @@ int main( )
18371837
```
18381838
Type& operator[](const Key& key);
18391839

1840-
Type& operator 0-(Key&& key);
1840+
Type& operator[](Key&& key);
18411841
```
18421842
18431843
### Parameters

0 commit comments

Comments
 (0)