Commit c4f30481 authored by Rob Pike's avatar Rob Pike

doc: rewrite run-on sentence in garbage collection discussion

Change-Id: I60cb7010448757ca4c7a2973bee2277b3d5fc439
Reviewed-on: https://go-review.googlesource.com/124175Reviewed-by: default avatarIan Lance Taylor <iant@golang.org>
parent f17220c2
...@@ -2348,9 +2348,9 @@ simpler because they don't need to specify how memory is managed across them. ...@@ -2348,9 +2348,9 @@ simpler because they don't need to specify how memory is managed across them.
</p> </p>
<p> <p>
The current implementation is a mark-and-sweep collector that runs The current implementation is a mark-and-sweep collector.
in parallel with the main program on a separate CPU core if the If the machine is a multiprocessor, it runs on a separate CPU
machine is a multiprocessor. core in parallel with the main program.
Major work on the collector in recent years has reduced pause times Major work on the collector in recent years has reduced pause times
often to the sub-millisecond range, even for large heaps, often to the sub-millisecond range, even for large heaps,
all but eliminating one of the major objections to garbage collection all but eliminating one of the major objections to garbage collection
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment