From 430a4befc653876775610c8224b139e384e565bb Mon Sep 17 00:00:00 2001 From: Kamran Khan Date: Sun, 9 Feb 2014 12:33:47 -0500 Subject: [PATCH] Fix typos in the 'New Default Allocation Strategy' release notes. This commit adds some missing words, fixes 'newCollectionsUsePowerOf2Sizes' casing and changes ':collmod:`usePowerOf2Sizes`' to ':collflag:`usePowerOf2Sizes`'. --- source/release-notes/2.6.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source/release-notes/2.6.txt b/source/release-notes/2.6.txt index 5e9a1644ece..f6fd7816bed 100644 --- a/source/release-notes/2.6.txt +++ b/source/release-notes/2.6.txt @@ -808,19 +808,19 @@ New Default Allocation Strategy .. versionchanged:: 2.5.5 By default all new collections will use the -:collmod:`usePowerOf2Sizes` allocation strategy where each record has +:collflag:`usePowerOf2Sizes` allocation strategy where each record has a size, in bytes rounded up to the power of 2. The new allocation strategy, which was available as an option in previous versions, uses more storage relative to total document size; -however, results in lower levels of storage fragmentation and more +however, it results in lower levels of storage fragmentation and more predictable storage capacity planning over time. -You can continue use the previous *exact fit allocation strategy* by -setting :collmod:`usePowerOf2Sizes` to ``false`` with :dbcommand:`collMod` on a +You can continue to use the previous *exact fit allocation strategy* by +setting :collflag:`usePowerOf2Sizes` to ``false`` with :dbcommand:`collMod` on a specific collection or setting -:parameter:`newCollectionsUsePowerOf2sizes` to ``false`` to disable -:collmod:`usePowerOf2Sizes` for new collections on an entire +:parameter:`newCollectionsUsePowerOf2Sizes` to ``false`` to disable +:collflag:`usePowerOf2Sizes` for new collections on an entire :program:`mongod` instance. Limit for ``maxConns`` Removed