Merge pull request #44044 from s2k/main

Fix link formatting to turbo.hotwired.dev
This commit is contained in:
Ryuta Kamizono 2022-01-02 22:44:32 +09:00 committed by GitHub
commit 3a2e361457
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.