From ea893cff07d300fc0d1048de73bf5212c4a30332 Mon Sep 17 00:00:00 2001 From: ArvinFarrelP <99516005+ArvinFarrelP@users.noreply.github.com> Date: Fri, 10 Apr 2026 16:05:47 +0700 Subject: [PATCH] doc: fix typo 'parlor' to 'parlance' in developer-notes --- doc/developer-notes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/developer-notes.md b/doc/developer-notes.md index 0871e182589..18691811aa4 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -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,