You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems the positions where spaces were missing are all newlines in the JSDoc sources. I didn't find the doc source of the second case, deprecated Deno.process.
/** Send a signal to process under given `pid`. The value and meaning of the * `signal` to the process is operating system and process dependant. * {@linkcode Signal} provides the most common signals. Default signal * is `"SIGTERM"`. * ... */
The text was updated successfully, but these errors were encountered:
The problem doesn't reproduce in the HTML doc generated from a simple main.ts, by running deno doc --html main.ts. Thus maybe it comes from codes in ./reference_gen.
/** Send a signal to process under given `pid`. The value and meaning of the * `signal` to the process is operating system and process dependant. * {@linkcode Signal} provides the most common signals. Default signal * is `"SIGTERM"`. */exportfunctionadd(a: number,b: number): number{returna+b;}if(import.meta.main){console.log("Add 2 + 3 =",add(2,3));}
https://docs.deno.com/api/deno/subprocess
It seems the positions where spaces were missing are all newlines in the JSDoc sources. I didn't find the doc source of the second case, deprecated
Deno.process
.https://github.com/denoland/deno/blob/94b588ce6624ae2f2ed648c7b1a479a10513542f/cli/tsc/dts/lib.deno.ns.d.ts#L3715-L3720
https://github.com/denoland/deno/blob/94b588ce6624ae2f2ed648c7b1a479a10513542f/cli/tsc/dts/lib.deno.ns.d.ts#L4595-L4598
The text was updated successfully, but these errors were encountered: