From 3096293ccbe3f8290379ad7a508cae124177823c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20K=C3=B6ppe?= Date: Sun, 14 Aug 2022 13:54:02 +0100 Subject: [PATCH] [sequence.reqmts] Use "program-defined sequence container" consistently. The earlier wording of "containers that the user defines" was not retained for new additions to the Standard, and it is needlessly informal. The term "program-defined" was only added recently, whereas the original wording has essentially existed since the beginnig. --- source/containers.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/containers.tex b/source/containers.tex index 3fe82cda13..1f6f132a61 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -1238,7 +1238,7 @@ \tcode{array} is provided as a sequence container which provides limited sequence operations because it has a fixed number of elements. The library also provides container adaptors that make it easy to construct abstract data types, such as \tcode{stack}s, \tcode{queue}s, \tcode{flat_map}s, or \tcode{flat_multimap}s, out of -the basic sequence container kinds (or out of other kinds of sequence containers that the user defines). +the basic sequence container kinds (or out of other program-defined sequence containers). \pnum \begin{note}