Skip to content

Commit 1bf8634

Browse files
committed
Fix broken links in ref docs
1 parent 5db1687 commit 1bf8634

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

spring-framework-reference/src/beans.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ List userList service.getUsernameList();
548548
or id is supplied explicitly, the container generates a unique name for
549549
that bean. However, if you want to refer to that bean by name, through
550550
the use of the <literal>ref</literal> element or <link lang=""
551-
linkend="beans-servicelocation">Service Location</link> style lookup,
551+
linkend="beans-servicelocator">Service Locator</link> style lookup,
552552
you must provide a name. Motivations for not supplying a name are
553553
related to using <link linkend="beans-inner-beans">inner beans</link>
554554
and <link linkend="beans-factory-autowire">autowiring

spring-framework-reference/src/cache.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ public Book findBook(ISBN isbn) {...}]]></programlisting>
9898
In fact, depending on the JVM implementation or running conditions, the same hashCode can be reused for different objects, in the same VM instance.</para>
9999

100100
<para>To provide a different <emphasis>default</emphasis> key generator, one needs to implement the <interfacename>org.springframework.cache.KeyGenerator</interfacename> interface.
101-
Once <link linkend="cache-configuration">configured</link>, the generator will be used for each declaration that doesn not specify its own key generation strategy (see below).
101+
Once configured, the generator will be used for each declaration that doesn not specify its own key generation strategy (see below).
102102
</para>
103103
</section>
104104

@@ -442,4 +442,4 @@ public Book findBook(ISBN isbn, boolean checkWarehouse, boolean includeUsed)]]><
442442
can fill in this small configuration gap.</para>
443443
</section>
444444

445-
</chapter>
445+
</chapter>

spring-framework-reference/src/validation.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ public interface ConversionService {
11011101
</bean>]]></programlisting>
11021102

11031103
<para>It is also common to use a ConversionService within a Spring MVC
1104-
application. See <xref linkend="format-configuring-FormatterRegistry"/>
1104+
application. See <xref linkend="format-configuring-FormattingConversionService"/>
11051105
for details on use with
11061106
<literal>&lt;mvc:annotation-driven/&gt;</literal>.</para>
11071107

@@ -1415,7 +1415,7 @@ public interface FormatterRegistrar {
14151415
</para>
14161416
</section>
14171417

1418-
<section id="format-configuring-FormattingConverionService">
1418+
<section id="format-configuring-FormattingConversionService">
14191419
<title>Configuring Formatting in Spring MVC</title>
14201420

14211421
<para> In a Spring MVC application, you may configure a custom

0 commit comments

Comments
 (0)