We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a25398e commit 8d718e5Copy full SHA for 8d718e5
2 files changed
scripts/protocol-dts-generator.ts
@@ -129,7 +129,7 @@ const getCommentLines = (description: string) => {
129
130
const emitDescription = (lines: string[]) => {
131
emitLine(`/**`)
132
- lines.map(l => emitLine(` * ${l}`))
+ lines.map(l => emitLine(` * ${l.replaceAll('*/', '*\\/')}`))
133
emitLine(` */`)
134
}
135
types/protocol.d.ts
@@ -13816,7 +13816,7 @@ export namespace Protocol {
13816
export interface SetBlockedURLsRequest {
13817
/**
13818
* URL patterns to block. Patterns use the URLPattern constructor string syntax
13819
- * (https://urlpattern.spec.whatwg.org/). Example: `*://*:*/*.css`.
+ * (https://urlpattern.spec.whatwg.org/). Example: `*://*:*\/*.css`.
13820
*/
13821
urlPatterns?: string[];
13822
0 commit comments