Skip to content

Commit 08b77dd

Browse files
ngocnhan-tran1996sbrannen
authored andcommitted
Fix typos and grammar in reference manual
Closes gh-36022 Signed-off-by: Tran Ngoc Nhan <[email protected]> (cherry picked from commit a7863a0)
1 parent 5eb16a6 commit 08b77dd

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

framework-docs/modules/ROOT/pages/core/aop/ataspectj/pointcuts.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Note that pointcut definitions are generally matched against any intercepted met
104104
If a pointcut is strictly meant to be public-only, even in a CGLIB proxy scenario with
105105
potential non-public interactions through proxies, it needs to be defined accordingly.
106106
107-
If your interception needs include method calls or even constructors within the target
107+
If your interception needs to include method calls or even constructors within the target
108108
class, consider the use of Spring-driven xref:core/aop/using-aspectj.adoc#aop-aj-ltw[native AspectJ weaving] instead
109109
of Spring's proxy-based AOP framework. This constitutes a different mode of AOP usage
110110
with different characteristics, so be sure to make yourself familiar with weaving

framework-docs/modules/ROOT/pages/core/expressions/language-ref/variables.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ are set by using the `setVariable()` method in `EvaluationContext` implementatio
66

77
[NOTE]
88
====
9-
Variable names must be begin with a letter (as defined below), an underscore, or a dollar
9+
Variable names must be begun with a letter (as defined below), an underscore, or a dollar
1010
sign.
1111
1212
Variable names must be composed of one or more of the following supported types of

framework-docs/modules/ROOT/pages/data-access/jdbc/simple.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ parameters return the data read from the table.
350350
You can declare `SimpleJdbcCall` in a manner similar to declaring `SimpleJdbcInsert`. You
351351
should instantiate and configure the class in the initialization method of your data-access
352352
layer. Compared to the `StoredProcedure` class, you need not create a subclass
353-
and you need not to declare parameters that can be looked up in the database metadata.
353+
and you need not declare parameters that can be looked up in the database metadata.
354354
The following example of a `SimpleJdbcCall` configuration uses the preceding stored
355355
procedure (the only configuration option, in addition to the `DataSource`, is the name
356356
of the stored procedure):

framework-docs/modules/ROOT/pages/integration/appendix.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ different properties with `jee`:
172172

173173
The `<jee:local-slsb/>` element configures a reference to a local EJB Stateless Session Bean.
174174

175-
The following example shows how to configures a reference to a local EJB Stateless Session Bean
175+
The following example shows how to configure a reference to a local EJB Stateless Session Bean
176176
without `jee`:
177177

178178
[source,xml,indent=0,subs="verbatim,quotes"]
@@ -184,7 +184,7 @@ without `jee`:
184184
</bean>
185185
----
186186

187-
The following example shows how to configures a reference to a local EJB Stateless Session Bean
187+
The following example shows how to configure a reference to a local EJB Stateless Session Bean
188188
with `jee`:
189189

190190
[source,xml,indent=0,subs="verbatim,quotes"]
@@ -200,7 +200,7 @@ with `jee`:
200200

201201
The `<jee:local-slsb/>` element configures a reference to a local EJB Stateless Session Bean.
202202

203-
The following example shows how to configures a reference to a local EJB Stateless Session Bean
203+
The following example shows how to configure a reference to a local EJB Stateless Session Bean
204204
and a number of properties without `jee`:
205205

206206
[source,xml,indent=0,subs="verbatim,quotes"]
@@ -215,7 +215,7 @@ and a number of properties without `jee`:
215215
</bean>
216216
----
217217

218-
The following example shows how to configures a reference to a local EJB Stateless Session Bean
218+
The following example shows how to configure a reference to a local EJB Stateless Session Bean
219219
and a number of properties with `jee`:
220220

221221
[source,xml,indent=0,subs="verbatim,quotes"]
@@ -234,7 +234,7 @@ and a number of properties with `jee`:
234234

235235
The `<jee:remote-slsb/>` element configures a reference to a `remote` EJB Stateless Session Bean.
236236

237-
The following example shows how to configures a reference to a remote EJB Stateless Session Bean
237+
The following example shows how to configure a reference to a remote EJB Stateless Session Bean
238238
without `jee`:
239239

240240
[source,xml,indent=0,subs="verbatim,quotes"]
@@ -251,7 +251,7 @@ without `jee`:
251251
</bean>
252252
----
253253

254-
The following example shows how to configures a reference to a remote EJB Stateless Session Bean
254+
The following example shows how to configure a reference to a remote EJB Stateless Session Bean
255255
with `jee`:
256256

257257
[source,xml,indent=0,subs="verbatim,quotes"]
@@ -313,7 +313,7 @@ xref:integration/jmx/naming.adoc#jmx-context-mbeanexport[Configuring Annotation-
313313
=== The `cache` Schema
314314

315315
You can use the `cache` elements to enable support for Spring's `@CacheEvict`, `@CachePut`,
316-
and `@Caching` annotations. It it also supports declarative XML-based caching. See
316+
and `@Caching` annotations. It is also supports declarative XML-based caching. See
317317
xref:integration/cache/annotations.adoc#cache-annotation-enable[Enabling Caching Annotations] and
318318
xref:integration/cache/declarative-xml.adoc[Declarative XML-based Caching] for details.
319319

framework-docs/modules/ROOT/pages/languages/kotlin/classes-interfaces.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ running the Kotlin compiler with its `-java-parameters` flag for standard Java p
1313

1414
You can declare configuration classes as
1515
{kotlin-docs}/nested-classes.html[top level or nested but not inner],
16-
since the later requires a reference to the outer class.
16+
since the latter requires a reference to the outer class.

0 commit comments

Comments
 (0)