diff options
Diffstat (limited to 'lib/stdlib/doc/src')
| -rw-r--r-- | lib/stdlib/doc/src/binary.xml | 15 | ||||
| -rw-r--r-- | lib/stdlib/doc/src/gen_statem.xml | 2 | ||||
| -rw-r--r-- | lib/stdlib/doc/src/notes.xml | 17 | 
3 files changed, 26 insertions, 8 deletions
| diff --git a/lib/stdlib/doc/src/binary.xml b/lib/stdlib/doc/src/binary.xml index f3d4edd30f..fd991f258b 100644 --- a/lib/stdlib/doc/src/binary.xml +++ b/lib/stdlib/doc/src/binary.xml @@ -505,15 +505,16 @@ store(Binary, GBSet) ->  <<1,1,1,1,1 ...  2> byte_size(A).  100 -3> binary:referenced_byte_size(A) +3> binary:referenced_byte_size(A).  100 -4> <<_:10/binary,B:10/binary,_/binary>> = A. +4> <<B:10/binary, C:90/binary>> = A.  <<1,1,1,1,1 ... -5> byte_size(B). -10 -6> binary:referenced_byte_size(B) -100</code> - +5> {byte_size(B), binary:referenced_byte_size(B)}. +{10,10} +6> {byte_size(C), binary:referenced_byte_size(C)}. +{90,100}</code> +      <p>In the above example, the small binary <c>B</c> was copied while the +      larger binary <c>C</c> references binary <c>A</c>.</p>        <note>        <p>Binary data is shared among processes. If another process        still references the larger binary, copying the part this diff --git a/lib/stdlib/doc/src/gen_statem.xml b/lib/stdlib/doc/src/gen_statem.xml index 6f6849a19d..ef548ad643 100644 --- a/lib/stdlib/doc/src/gen_statem.xml +++ b/lib/stdlib/doc/src/gen_statem.xml @@ -40,7 +40,7 @@      <p>        This reference manual describes types generated from the types        in the <c>gen_statem</c> source code, so they are correct. -      However, the generated descriptions also reflect the type hiearchy, +      However, the generated descriptions also reflect the type hierarchy,        which makes them kind of hard to read.      </p>      <p> diff --git a/lib/stdlib/doc/src/notes.xml b/lib/stdlib/doc/src/notes.xml index 092056ffde..5c07dd2ee6 100644 --- a/lib/stdlib/doc/src/notes.xml +++ b/lib/stdlib/doc/src/notes.xml @@ -306,6 +306,23 @@  </section> +<section><title>STDLIB 3.8.2.1</title> + +    <section><title>Fixed Bugs and Malfunctions</title> +      <list> +        <item> +	    <p> Fix a bug that could cause a failure when formatting +	    binaries using the control sequences <c>p</c> or <c>P</c> +	    and limiting the output with the option +	    <c>chars_limit</c>. </p> +          <p> +	    Own Id: OTP-15847 Aux Id: ERL-957 </p> +        </item> +      </list> +    </section> + +</section> +  <section><title>STDLIB 3.8.2</title>      <section><title>Fixed Bugs and Malfunctions</title> | 
