Skip to content

Commit 4cc8f4c

Browse files
drumoniisnicoll
authored andcommitted
Missing some double backticks with apostrophes
Closes gh-1566
1 parent dff2c84 commit 4cc8f4c

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/asciidoc/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/asciidoc/integration.adoc

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

277277
Alternatively, create a `HessianServiceExporter` in your root application context (e.g.
@@ -425,7 +425,7 @@ dispatcher's application context:
425425
</bean>
426426
----
427427

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

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

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

25882588
[NOTE]
25892589
====
@@ -3296,7 +3296,7 @@ a container that does not provide an `MBeanServer`. To address this you can crea
32963296
`MBeanServer` instance declaratively by adding an instance of the
32973297
`org.springframework.jmx.support.MBeanServerFactoryBean` class to your configuration.
32983298
You can also ensure that a specific `MBeanServer` is used by setting the value of the
3299-
`MBeanExporter`'s `server` property to the `MBeanServer` value returned by an
3299+
``MBeanExporter``'s `server` property to the `MBeanServer` value returned by an
33003300
`MBeanServerFactoryBean`; for example:
33013301

33023302
[source,xml,indent=0]

src/asciidoc/web-view.adoc

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

0 commit comments

Comments
 (0)