From bd642521ccc2625fdd392f6ad645e305aaf4cdee Mon Sep 17 00:00:00 2001 From: Hirokatsu Endo Date: Thu, 27 Jul 2023 20:05:47 +0900 Subject: [PATCH] Removed unnecessary double quote. (#488) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42027fcb..ee1348ef 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ When the user will click on the `Edit this todo` link, as direct response to thi ### A note on custom layouts In order to render turbo frame requests without the application layout, Turbo registers a custom [layout method](https://api.rubyonrails.org/classes/ActionView/Layouts/ClassMethods.html#method-i-layout). -If your application uses custom layout resolution, you have to make sure to return `""turbo_rails/frame"` (or `false` for TurboRails < 1.4.0) for turbo frame requests: +If your application uses custom layout resolution, you have to make sure to return `"turbo_rails/frame"` (or `false` for TurboRails < 1.4.0) for turbo frame requests: ```ruby layout :custom_layout