From 70988822ba63db807452c4e6721710040c7ff34c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20Ka=CC=88mper?= Date: Sun, 2 Jan 2022 12:19:30 +0100 Subject: [PATCH] Fixes link formatting to Turbo MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Stephan Kämper --- guides/source/getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index ab44a3e43b..ff9430e241 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -1312,7 +1312,7 @@ In the above code, we're passing the `data` attribute with some options to `link The `turbo_method: :delete` option causes the link to make a `DELETE` request instead of a `GET` request. The `turbo_confirm: { confirm: "Are you sure?" }` option causes a confirmation dialog to appear when the link is clicked. If the user cancels the -dialog, the request is aborted. Both of these options are powered by (Turbo)[https://turbo.hotwired.dev/] +dialog, the request is aborted. Both of these options are powered by [Turbo](https://turbo.hotwired.dev/) called *Performing Visits*. The JavaScript file that implements these behaviors is included by default in fresh Rails applications.