We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
<code>
1 parent c52aaac commit 3924c43Copy full SHA for 3924c43
2 files changed
doc/api/assert.md
@@ -129,7 +129,7 @@ Legacy assertion mode may have surprising results, especially when using
129
assert.deepEqual(/a/gi, new Date());
130
```
131
132
-## Class: assert.AssertionError
+## Class: `assert.AssertionError`
133
134
* Extends: {errors.Error}
135
test/common/README.md
@@ -841,7 +841,7 @@ frames for testing of HTTP/2 endpoints
841
const http2 = require('../common/http2');
842
843
844
-### Class: Frame
+### Class: `Frame`
845
846
The `http2.Frame` is a base class that creates a `Buffer` containing a
847
serialized HTTP/2 frame header.
@@ -861,7 +861,7 @@ socket.write(frame.data);
861
862
The serialized `Buffer` may be retrieved using the `frame.data` property.
863
864
-### Class: HeadersFrame
+### Class: `HeadersFrame`
865
866
The `http2.HeadersFrame` is a subclass of `http2.Frame` that serializes a
867
`HEADERS` frame.
@@ -880,7 +880,7 @@ const frame = new http2.HeadersFrame(id, payload, padlen, final);
880
socket.write(frame.data);
881
882
883
-### Class: SettingsFrame
+### Class: `SettingsFrame`
884
885
The `http2.SettingsFrame` is a subclass of `http2.Frame` that serializes an
886
empty `SETTINGS` frame.
@@ -1138,7 +1138,7 @@ See the source code for definitions. Please avoid using it in new
1138
code - the current usage of this port in tests is being migrated to
1139
the original WPT harness, see [the WPT tests README][].
1140
1141
-### Class: WPTRunner
+### Class: `WPTRunner`
1142
1143
A driver class for running WPT with the WPT harness in a worker thread.
1144
0 commit comments