From 180b237b057f8aec6008dec07df9024689f64586 Mon Sep 17 00:00:00 2001 From: Dimitri Balios Date: Mon, 22 May 2023 23:10:28 +0200 Subject: [PATCH] Update README.md for typo Typo fix "faciliate" to "facilitate" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d5e24d..48ed70b 100644 --- a/README.md +++ b/README.md @@ -792,7 +792,7 @@ If you need to set any HTMX headers in your `Page` response, this can be done by #### Layout template override -To faciliate easy partial rendering for HTMX requests, the `Page` will automatically change your _Layout_ template to use `htmx.gohtml`, which currently only renders `{{template "content" .}}`. This allows you to use an HTMX request to only update the content portion of the page, rather than the entire HTML. +To facilitate easy partial rendering for HTMX requests, the `Page` will automatically change your _Layout_ template to use `htmx.gohtml`, which currently only renders `{{template "content" .}}`. This allows you to use an HTMX request to only update the content portion of the page, rather than the entire HTML. This override only happens if the HTMX request being made is **not a boost** request because **boost** requests replace the entire `body` element so there is no need to do a partial render.