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

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-06-15 00:49:34 +0300
committerRich Trott <rtrott@gmail.com>2020-06-19 18:09:05 +0300
commitd1d412b413d2f8febb1795459ff04c36c9c87f2c (patch)
treefeeb2d25788a98693c3bf23975d163a67827091e /doc/api/zlib.md
parent9918bdf5cb07f58d230522244a372cbb1b510956 (diff)
doc: use sentence-case for headings in docs
PR-URL: https://github.com/nodejs/node/pull/33889 Refs: https://developers.google.com/style/capitalization#capitalization-in-titles-and-headings Refs: https://docs.microsoft.com/en-us/style-guide/capitalization Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'doc/api/zlib.md')
-rw-r--r--doc/api/zlib.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/api/zlib.md b/doc/api/zlib.md
index f845ce5e526..d333b99b75d 100644
--- a/doc/api/zlib.md
+++ b/doc/api/zlib.md
@@ -93,7 +93,7 @@ do_unzip(buffer)
});
```
-## Threadpool Usage and Performance Considerations
+## Threadpool usage and performance considerations
All `zlib` APIs, except those that are explicitly synchronous, use the Node.js
internal threadpool. This can lead to surprising effects and performance
@@ -133,7 +133,7 @@ message.
The examples given below are drastically simplified to show the basic concept.
Using `zlib` encoding can be expensive, and the results ought to be cached.
-See [Memory Usage Tuning][] for more information on the speed/memory/compression
+See [Memory usage tuning][] for more information on the speed/memory/compression
tradeoffs involved in `zlib` usage.
```js
@@ -252,7 +252,7 @@ possible to determine whether the input ended prematurely or lacks the
integrity checks, making it necessary to manually check that the
decompressed result is valid.
-## Memory Usage Tuning
+## Memory usage tuning
<!--type=misc-->
@@ -837,7 +837,7 @@ added: v0.5.8
Creates and returns a new [`Unzip`][] object.
-## Convenience Methods
+## Convenience methods
<!--type=misc-->
@@ -1186,7 +1186,7 @@ Decompress a chunk of data with [`Unzip`][].
[`stream.Transform`]: stream.html#stream_class_stream_transform
[`zlib.bytesWritten`]: #zlib_zlib_byteswritten
[Brotli parameters]: #zlib_brotli_constants
-[Memory Usage Tuning]: #zlib_memory_usage_tuning
+[Memory usage tuning]: #zlib_memory_usage_tuning
[RFC 7932]: https://www.rfc-editor.org/rfc/rfc7932.txt
[Streams API]: stream.md
[convenience methods]: #zlib_convenience_methods