Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Unity-Technologies/bdwgc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorIvan Maidanski <ivmai@mail.ru>2017-08-31 02:12:06 +0300
committerIvan Maidanski <ivmai@mail.ru>2017-08-31 02:12:06 +0300
commitc875884fc981576598aadd7bd2d850b9fd4f81c7 (patch)
treeac0c9de1bbcdd60a58599f47682888e6bc52e83e /doc
parent57406a0b54473fa18eeaa7dfca002635481e5cb9 (diff)
Fix typo in 'scale' documentation file
* doc/scale.md (Options for enhanced scalability): Fix a typo ("be replaced").
Diffstat (limited to 'doc')
-rw-r--r--doc/scale.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/scale.md b/doc/scale.md
index f38de04b..75fb635b 100644
--- a/doc/scale.md
+++ b/doc/scale.md
@@ -54,7 +54,7 @@ kind, and allocate from that. This greatly reduces locking. The thread-local
free lists are refilled using `GC_malloc_many`.
An important side effect of this flag is to replace the default
-spin-then-sleep lock to be replace by a spin-then-queue based implementation.
+spin-then-sleep lock to be replaced by a spin-then-queue based implementation.
This _reduces performance_ for the standard allocation functions, though
it usually improves performance when thread-local allocation is used heavily,
and thus the number of short-duration lock acquisitions is greatly reduced.