@@ -841,7 +841,7 @@ frames for testing of HTTP/2 endpoints
|
841 | 841 | const http2 = require('../common/http2'); |
842 | 842 | ``` |
843 | 843 | |
844 | | -### Class: Frame |
| 844 | +### Class: `Frame` |
845 | 845 | |
846 | 846 | The `http2.Frame` is a base class that creates a `Buffer` containing a |
847 | 847 | serialized HTTP/2 frame header. |
@@ -861,7 +861,7 @@ socket.write(frame.data);
|
861 | 861 | |
862 | 862 | The serialized `Buffer` may be retrieved using the `frame.data` property. |
863 | 863 | |
864 | | -### Class: HeadersFrame |
| 864 | +### Class: `HeadersFrame` |
865 | 865 | |
866 | 866 | The `http2.HeadersFrame` is a subclass of `http2.Frame` that serializes a |
867 | 867 | `HEADERS` frame. |
@@ -880,7 +880,7 @@ const frame = new http2.HeadersFrame(id, payload, padlen, final);
|
880 | 880 | socket.write(frame.data); |
881 | 881 | ``` |
882 | 882 | |
883 | | -### Class: SettingsFrame |
| 883 | +### Class: `SettingsFrame` |
884 | 884 | |
885 | 885 | The `http2.SettingsFrame` is a subclass of `http2.Frame` that serializes an |
886 | 886 | empty `SETTINGS` frame. |
@@ -1138,7 +1138,7 @@ See the source code for definitions. Please avoid using it in new
|
1138 | 1138 | code - the current usage of this port in tests is being migrated to |
1139 | 1139 | the original WPT harness, see [the WPT tests README][]. |
1140 | 1140 | |
1141 | | -### Class: WPTRunner |
| 1141 | +### Class: `WPTRunner` |
1142 | 1142 | |
1143 | 1143 | A driver class for running WPT with the WPT harness in a worker thread. |
1144 | 1144 | |
|