Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update link url #472

Merged
merged 1 commit into from
May 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion by-example/benchmarking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @tags cli
* @run deno bench <url>
* @resource {https://docs.deno.com/runtime/manual/tools/benchmarker} Manual: Benchmarker tool
* @resource {/http-requests} Example: HTTP Requests
* @resource {/examples/http-requests} Example: HTTP Requests
* @group System
*
* When writing libraries, a very common task that needs to be done is
Expand Down
2 changes: 1 addition & 1 deletion by-example/dependency-management.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* @title Dependency Management
* @difficulty beginner
* @tags cli, deploy
* @resource {/import-export} Example: Importing & Exporting
* @resource {/examples/import-export} Example: Importing & Exporting
* @run <url>
* @group Basics
*
Expand Down
2 changes: 1 addition & 1 deletion by-example/http-server-files.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @run --allow-net --allow-read <url>
* @resource {https://deno.land/api?s=Deno.serve} Doc: Deno.serve
* @resource {$std/http/file_server.ts} Doc: std/http/file_server
* @resource {/http-server} Example: HTTP Server: Hello World
* @resource {/examples/http-server} Example: HTTP Server: Hello World
* @group Network
*
* An example of a HTTP server that serves files.
Expand Down
2 changes: 1 addition & 1 deletion by-example/http-server-routing.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @difficulty intermediate
* @tags cli, deploy
* @run --allow-net <url>
* @resource {/http-server} Example: HTTP Server: Hello World
* @resource {/example/http-server} Example: HTTP Server: Hello World
* @resource {https://developer.mozilla.org/en-US/docs/Web/API/URL_Pattern_API} MDN: URL Pattern API
* @playground https://dash.deno.com/playground/example-routing
* @group Network
Expand Down
2 changes: 1 addition & 1 deletion by-example/http-server-streaming.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @difficulty intermediate
* @tags cli, deploy
* @run --allow-net <url>
* @resource {/http-server} Example: HTTP Server: Hello World
* @resource {/examples/http-server} Example: HTTP Server: Hello World
* @resource {https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream} MDN: ReadableStream
* @playground https://dash.deno.com/playground/example-streaming
* @group Network
Expand Down
2 changes: 1 addition & 1 deletion by-example/http-server-websocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @difficulty intermediate
* @tags cli, deploy
* @run --allow-net <url>
* @resource {/http-server} Example: HTTP Server: Hello World
* @resource {/example/http-server} Example: HTTP Server: Hello World
* @resource {https://developer.mozilla.org/en-US/docs/Web/API/WebSocket} MDN: WebSocket
* @group Network
*
Expand Down
2 changes: 1 addition & 1 deletion by-example/import-export.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @difficulty beginner
* @tags cli, deploy
* @run <url>
* @resource {/dependency-management} Example: Dependency Management
* @resource {/examples/dependency-management} Example: Dependency Management
* @resource {https://docs.deno.com/runtime/manual/basics/modules} Manual: Modules
* @group Basics
*
Expand Down
2 changes: 1 addition & 1 deletion by-example/parsing-serializing-csv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @difficulty beginner
* @tags cli, deploy, web
* @run <url>
* @resource {/import-export} Example: Importing & Exporting
* @resource {/examples/import-export} Example: Importing & Exporting
* @resource {https://datatracker.ietf.org/doc/html/rfc4180} Spec: CSV
* @group Encoding
*
Expand Down
2 changes: 1 addition & 1 deletion by-example/parsing-serializing-toml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @difficulty beginner
* @tags cli, deploy, web
* @run <url>
* @resource {/import-export} Example: Importing & Exporting
* @resource {/examples/import-export} Example: Importing & Exporting
* @resource {https://toml.io} Spec: TOML
* @group Encoding
*
Expand Down
2 changes: 1 addition & 1 deletion by-example/parsing-serializing-yaml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* @difficulty beginner
* @tags cli, deploy, web
* @run <url>
* @resource {/import-export} Example: Importing & Exporting
* @resource {/example/import-export} Example: Importing & Exporting
* @resource {https://yaml.org} Spec: YAML
* @group Encoding
*
Expand Down
2 changes: 1 addition & 1 deletion by-example/piping-streams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @tags cli
* @run --allow-net --allow-read --allow-write <url>
* @resource {https://developer.mozilla.org/en-US/docs/Web/API/ReadableStream} MDN: ReadableStream
* @resource {/tcp-listener.ts} Example: TCP Listener
* @resource {/examples/tcp-listener.ts} Example: TCP Listener
* @group Network
*
* Deno implements web-standard streams which comes with many advantages. One of the most useful
Expand Down
2 changes: 1 addition & 1 deletion by-example/tls-connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @tags cli
* @run --allow-net --allow-read <url>
* @resource {https://deno.land/api?s=Deno.connectTls} Doc: Deno.connectTls
* @resource {/tls-listener.ts} Example: TCP/TLS Listener
* @resource {/examples/tls-listener.ts} Example: TCP/TLS Listener
* @group Network
*
* An example of connecting to a TCP server using TLS on localhost and writing a 'ping' message to the server.
Expand Down
2 changes: 1 addition & 1 deletion by-example/udp-connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @tags cli
* @run --allow-net --unstable <url>
* @resource {https://deno.land/api?s=Deno.connect} Doc: Deno.connect
* @resource {/udp-listener.ts} Example: UDP Listener
* @resource {/examples/udp-listener.ts} Example: UDP Listener
* @group Network
*
* An example of writing a 'ping' message to a UDP server on localhost.
Expand Down
2 changes: 1 addition & 1 deletion by-example/udp-listener.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @tags cli
* @run --allow-net --unstable <url>
* @resource {https://deno.land/api?s=Deno.listenDatagram} Doc: Deno.listenDatagram
* @resource {/udp-connector.ts} Example: UDP Connector
* @resource {/examples/udp-connector.ts} Example: UDP Connector
* @group Network
*
* An example of a UDP listener on localhost that will log the message
Expand Down
Loading