diff --git a/source/containers.tex b/source/containers.tex index dd221c10a2..82de996608 100644 --- a/source/containers.tex +++ b/source/containers.tex @@ -1828,7 +1828,8 @@ \indexordmem{emplace_hint}% \tcode{a.emplace_\-hint(\brk{}p, args)} & \tcode{iterator} & - equivalent to \tcode{a.emplace(} \tcode{std::forward<\brk{}Args\brk{}>(\brk{}args)...)}. + \effects + Equivalent to \tcode{a.emplace(} \tcode{std::forward<\brk{}Args\brk{}>(\brk{}args)...)}. Return value is an iterator pointing to the element with the key equivalent to the newly inserted element. The element is inserted as close as possible to the position just prior @@ -1887,7 +1888,8 @@ \tcode{a.\brk{}insert(\brk{}il)} & \tcode{void} & - equivalent to \tcode{a.insert(il.begin(), il.end())} & + \effects + Equivalent to \tcode{a.insert(il.begin(), il.end())} & \\ \rowsep \tcode{a_uniq.\brk{}insert(\brk{}nh)} &