From b339a5fa44e0b8ca2ee1a87243167c4337b4305b Mon Sep 17 00:00:00 2001 From: egion Date: Wed, 23 Jan 2019 20:13:55 +0100 Subject: [PATCH] Correct link to the Grails documentation The link to the Grails documentation led to a 404. I believe the page identified by http://docs.grails.org/latest/guide/theWebLayer.html#automaticLinkRewriting is the one that readers shall be forwarded to. --- src/main/docs/guide/gspLinks.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/docs/guide/gspLinks.adoc b/src/main/docs/guide/gspLinks.adoc index d5f7aee..5bbd858 100644 --- a/src/main/docs/guide/gspLinks.adoc +++ b/src/main/docs/guide/gspLinks.adoc @@ -6,4 +6,4 @@ Let's take a look at one more common GSP tag: `` include::{sourceDir}/grails-app/views/home/index.gsp[indent=0,lines="34..36"] ---- -`` renders an HTML `` tag, but it has the advantage in that it allows you to specify your link target following Grails conventions, such as this example (using the `controller`, `action` and `id` attributes). `` is also smart enough to follow our URL mappings, so if we change the URL mapping for `vehicle/show`, the `` tag will still render the correct URL. There's many more attributes supported by `` - see the http://docs.grails.org/latest/ref/Tags/link.html[Grails documentation] for more. +`` renders an HTML `` tag, but it has the advantage in that it allows you to specify your link target following Grails conventions, such as this example (using the `controller`, `action` and `id` attributes). `` is also smart enough to follow our URL mappings, so if we change the URL mapping for `vehicle/show`, the `` tag will still render the correct URL. There's many more attributes supported by `` - see the http://docs.grails.org/latest/guide/theWebLayer.html#automaticLinkRewriting[Grails documentation] for more.