Skip to content

Commit

Permalink
docs(cli): remove trailing slash from import.meta.dirname expected …
Browse files Browse the repository at this point in the history
…output (denoland#24295)
  • Loading branch information
iuioiua committed Jun 21, 2024
1 parent 9168078 commit c012c20
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cli/tsc/dts/lib.deno.ns.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ declare interface ImportMeta {
* * Example:
* ```
* // Unix
* console.log(import.meta.dirname); // /home/alice/
* console.log(import.meta.dirname); // /home/alice
*
* // Windows
* console.log(import.meta.dirname); // C:\alice\
* console.log(import.meta.dirname); // C:\alice
* ```
*/
dirname?: string;
Expand Down

0 comments on commit c012c20

Please sign in to comment.