Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

doc: add missing YAML keyword in v8.md metadata #20023

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions doc/api/v8.md
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ This API is under development, and changes (including incompatible
changes to the API or wire format) may occur until this warning is removed.

### v8.serialize(value)
<!--
<!-- YAML
added: v8.0.0
-->

Expand All @@ -180,7 +180,7 @@ added: v8.0.0
Uses a [`DefaultSerializer`][] to serialize `value` into a buffer.

### v8.deserialize(buffer)
<!--
<!-- YAML
added: v8.0.0
-->

Expand All @@ -190,7 +190,7 @@ Uses a [`DefaultDeserializer`][] with default options to read a JS value
from a buffer.

### class: v8.Serializer
<!--
<!-- YAML
added: v8.0.0
-->

Expand Down Expand Up @@ -299,7 +299,7 @@ Indicate whether to treat `TypedArray` and `DataView` objects as
host objects, i.e. pass them to [`serializer._writeHostObject()`][].

### class: v8.Deserializer
<!--
<!-- YAML
added: v8.0.0
-->

Expand Down Expand Up @@ -379,7 +379,7 @@ This method is not present on the `Deserializer` class itself but can be
provided by subclasses.

### class: v8.DefaultSerializer
<!--
<!-- YAML
added: v8.0.0
-->

Expand All @@ -388,7 +388,7 @@ A subclass of [`Serializer`][] that serializes `TypedArray`
stores the part of their underlying `ArrayBuffer`s that they are referring to.

### class: v8.DefaultDeserializer
<!--
<!-- YAML
added: v8.0.0
-->

Expand Down