Skip to content

Commit 3cb38ce

Browse files
committed
Merge pull request #1566 from drumonii:double-backtick-with-apostrophes
* pr/1566: Missing some double backticks with apostrophes
2 parents b4c95bf + ff2bea9 commit 3cb38ce

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/docs/asciidoc/core/core-aop-api.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -736,7 +736,7 @@ options that are preferable if you don't need such control.
736736
The `ProxyFactoryBean`, like other Spring `FactoryBean` implementations, introduces a
737737
level of indirection. If you define a `ProxyFactoryBean` with name `foo`, what objects
738738
referencing `foo` see is not the `ProxyFactoryBean` instance itself, but an object
739-
created by the `ProxyFactoryBean`'s implementation of the `getObject()` method. This
739+
created by the ``ProxyFactoryBean``'s implementation of the `getObject()` method. This
740740
method will create an AOP proxy wrapping a target object.
741741

742742
One of the most important benefits of using a `ProxyFactoryBean` or another IoC-aware

src/docs/asciidoc/integration.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ In the newly created application context called `remoting-servlet.xml`, we'll cr
263263
Now we're ready to link in the service at the client. No explicit handler mapping is
264264
specified, mapping request URLs onto services, so `BeanNameUrlHandlerMapping` will be
265265
used: Hence, the service will be exported at the URL indicated through its bean name
266-
within the containing `DispatcherServlet`'s mapping (as defined above):
266+
within the containing ``DispatcherServlet``'s mapping (as defined above):
267267
`'http://HOST:8080/remoting/AccountService'`.
268268

269269
Alternatively, create a `HessianServiceExporter` in your root application context (e.g.
@@ -408,7 +408,7 @@ dispatcher's application context:
408408
</bean>
409409
----
410410

411-
Such an exporter definition will be exposed through the `DispatcherServlet`'s standard
411+
Such an exporter definition will be exposed through the ``DispatcherServlet``'s standard
412412
mapping facilities, as explained in the section on Hessian.
413413

414414
Alternatively, create an `HttpInvokerServiceExporter` in your root application context
@@ -1644,7 +1644,7 @@ synchronous receive calls is set using the property `setReceiveTimeout`.
16441644

16451645
Some JMS providers allow the setting of default QOS values administratively through the
16461646
configuration of the `ConnectionFactory`. This has the effect that a call to
1647-
`MessageProducer`'s send method `send(Destination destination, Message message)` will
1647+
``MessageProducer``'s send method `send(Destination destination, Message message)` will
16481648
use different QOS default values than those specified in the JMS specification. In order
16491649
to provide consistent management of QOS values, the `JmsTemplate` must therefore be
16501650
specifically enabled to use its own QOS values by setting the boolean property
@@ -2427,7 +2427,7 @@ Spring also provides a generic JCA message endpoint manager which is not tied to
24272427
for using any message listener type (e.g. a CCI MessageListener) and any
24282428
provider-specific ActivationSpec object. Check out your JCA provider's documentation to
24292429
find out about the actual capabilities of your connector, and consult
2430-
`GenericMessageEndpointManager`'s javadoc for the Spring-specific configuration details.
2430+
``GenericMessageEndpointManager``'s javadoc for the Spring-specific configuration details.
24312431

24322432
[NOTE]
24332433
====
@@ -3163,7 +3163,7 @@ a container that does not provide an `MBeanServer`. To address this you can crea
31633163
`MBeanServer` instance declaratively by adding an instance of the
31643164
`org.springframework.jmx.support.MBeanServerFactoryBean` class to your configuration.
31653165
You can also ensure that a specific `MBeanServer` is used by setting the value of the
3166-
`MBeanExporter`'s `server` property to the `MBeanServer` value returned by an
3166+
``MBeanExporter``'s `server` property to the `MBeanServer` value returned by an
31673167
`MBeanServerFactoryBean`; for example:
31683168

31693169
[source,xml,indent=0]

src/docs/asciidoc/web/webmvc-view.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1538,7 +1538,7 @@ for more configuration examples.
15381538
== XML Marshalling
15391539
The `MarshallingView` uses an XML `Marshaller` defined in the `org.springframework.oxm`
15401540
package to render the response content as XML. The object to be marshalled can be set
1541-
explicitly using `MarhsallingView`'s `modelKey` bean property. Alternatively, the view
1541+
explicitly using ``MarhsallingView``'s `modelKey` bean property. Alternatively, the view
15421542
will iterate over all model properties and marshal the first type that is supported
15431543
by the `Marshaller`. For more information on the functionality in the
15441544
`org.springframework.oxm` package refer to the chapter <<oxm,Marshalling XML using O/X

0 commit comments

Comments
 (0)