Skip to content

Commit

Permalink
remove terminating dot from caption
Browse files Browse the repository at this point in the history
  • Loading branch information
rutsky committed Jun 30, 2015
1 parent aacb5f6 commit dbaaa2c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/trpl/the-stack-and-the-heap.md
Expand Up @@ -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”.
Expand Down

0 comments on commit dbaaa2c

Please sign in to comment.