doc: fix typo 'parlor' to 'parlance' in developer-notes

This commit is contained in:
ArvinFarrelP
2026-04-10 16:05:47 +07:00
committed by GitHub
parent 58dccd27e1
commit ea893cff07

View File

@@ -796,7 +796,7 @@ Common misconceptions are clarified in those sections:
- Do not compare an iterator from one data structure with an iterator of
another data structure (even if of the same type).
- *Rationale*: Behavior is undefined. In C++ parlor this means "may reformat
- *Rationale*: Behavior is undefined. In C++ parlance this means "may reformat
the universe", in practice this has resulted in at least one hard-to-debug crash bug.
- Watch out for out-of-bounds vector access. `&vch[vch.size()]` is illegal,