Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/nodejs/node into doc/stre…
Browse files Browse the repository at this point in the history
…am-write
  • Loading branch information
dev-script committed Sep 12, 2020
1 parent a2d155a commit 5929634
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
5 changes: 5 additions & 0 deletions doc/api/buffer.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
<!-- source_link=lib/buffer.js -->

In Node.js, `Buffer` objects are used to represent binary data in the form
of a sequence of bytes. Many Node.js APIs, for example streams and file system
operations, support `Buffer`s, as interactions with the operating system or
other processes generally always happen in terms of binary data.

`Buffer` objects are used to represent a fixed-length sequence of bytes. Many
Node.js APIs support `Buffer`s.

Expand Down
4 changes: 2 additions & 2 deletions doc/api/fs.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<!-- source_link=lib/fs.js -->

The `fs` module enables interacting with the file system in a
way modeled on standard POSIX functions.
The `fs` module provides an API for interacting with the file system in a
manner closely modeled around standard POSIX functions.

To use this module:

Expand Down
3 changes: 3 additions & 0 deletions src/node_report.cc
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,12 @@ using v8::HeapSpaceStatistics;
using v8::HeapStatistics;
using v8::Isolate;
using v8::Local;
using v8::Number;
using v8::Object;
using v8::StackTrace;
using v8::String;
using v8::TryCatch;
using v8::Value;
using v8::V8;
using v8::Value;

Expand Down

0 comments on commit 5929634

Please sign in to comment.