remove terminating dot from caption

This commit is contained in:
Vladimir Rutsky 2015-07-01 02:34:01 +03:00
parent aacb5f68bf
commit dbaaa2c6a4

View file

@ -537,7 +537,7 @@ Generally, you should prefer stack allocation, and so, Rust stack-allocates by
default. The LIFO model of the stack is simpler, at a fundamental level. This
has two big impacts: runtime efficiency and semantic impact.
## Runtime Efficiency.
## Runtime Efficiency
Managing the memory for the stack is trivial: The machine just
increments or decrements a single value, the so-called “stack pointer”.