Skip to content

Commit 793d37c

Browse files
authored
Fix typo (#608)
[skip ci]
1 parent 7407d06 commit 793d37c

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
lines changed

docs/config.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Configuration
66
:depth: 3
77

88
The configurable items must be returned from the methods of the implementation class of
9-
the ``org.seasar.doma.jdbc.Confing`` interface.
9+
the ``org.seasar.doma.jdbc.Config`` interface.
1010

1111
Configurable items
1212
==================

docs/entity.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ In advance, define the database primary key as IDENTITY.
251251

252252
.. warning::
253253

254-
All RDBMS does't support the IDENTITY function.
254+
All RDBMS doesn't support the IDENTITY function.
255255

256256
Id generation by SEQUENCE
257257
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -273,7 +273,7 @@ correspond the properties within the ``@SequenceGenerator`` annotation.
273273

274274
.. warning::
275275

276-
All RDBMS does't support the SEQUENCE.
276+
All RDBMS doesn't support the SEQUENCE.
277277

278278
Id generation by TABLE
279279
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
@@ -327,7 +327,7 @@ Tenant Id
327327
------------------------------
328328

329329
The tenant id fields are represented with the ``@TenantId`` annotation.
330-
The column corresponding to the annotated field is included in the WHERE clause of UPDATE and DELETE stetements.
330+
The column corresponding to the annotated field is included in the WHERE clause of UPDATE and DELETE statements.
331331

332332
.. code-block:: java
333333

docs/query/insert.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Also, ``exclude`` element and ``include`` element and ``excludeNull`` element of
140140
Unique constraint violation
141141
===========================
142142

143-
``UniqueConstraintException`` is thrown regardless with or without using sql file if unique constraint violation is occured.
143+
``UniqueConstraintException`` is thrown regardless with or without using sql file if unique constraint violation is occurred.
144144

145145
Query timeout
146146
==================

docs/query/script.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ Following script is valid for Oracle Database:
172172
insert into EMPLOYEE (ID, NAME) values (1, 'SMITH');
173173
174174
/*
175-
* procedure creatiton block
175+
* procedure creation block
176176
*/
177177
create or replace procedure proc
178178
( cur out sys_refcursor,

docs/query/select.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ There is no feature that auto generating search SQL.
2323

2424
You need creating entity class **depending on search result**.
2525
For example, result set including column in EMPLOYEE table is accepted Employee class if the Employee class that correspond EMPLOYEE table is declared.
26-
But, you need different class from the Employee entity class(For example EmmployeeDepartment class) for result set that is get by joining EMPLOYEE table and DEPARTMENT table.
26+
But, you need different class from the Employee entity class(For example EmployeeDepartment class) for result set that is get by joining EMPLOYEE table and DEPARTMENT table.
2727

2828
Query condition
2929
=================
@@ -85,7 +85,7 @@ You can specify multiple parameter.
8585
Mapping to IN clauses by using Iterable.
8686
-----------------------------------------
8787

88-
You use subtype of ``java.lang.Iterable`` if excute searching by using IN clauses.
88+
You use subtype of ``java.lang.Iterable`` if execute searching by using IN clauses.
8989

9090
.. code-block:: java
9191
@@ -147,7 +147,7 @@ But if `Ensure of search result`_ is enabled, exception is thrown if search coun
147147
Stream search
148148
==============
149149

150-
You can use stream search if handle all record at one try as ``java.util.stream.Stream`` rather than recieve as ``java.util.List``.
150+
You can use stream search if handle all record at one try as ``java.util.stream.Stream`` rather than receiving as ``java.util.List``.
151151

152152
There are two kind in stream search such as return the return value and pass ``Stream`` to ``java.util.Function``.
153153

docs/sql.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ The following example is the pair of a DAO method and an SQL template:
292292

293293
.. code-block:: java
294294
295-
List<Employee> selectAll(BigDecimal salary, String orderyBy);
295+
List<Employee> selectAll(BigDecimal salary, String orderBy);
296296
297297
.. code-block:: sql
298298

docs/transaction.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ To use local transaction, these conditions are required:
2323
* Use the ``LocalTransactionManager`` above to control database access
2424

2525
There are several ways to generate and get the ``LocalTransactionManager``,
26-
but the simplest way is to generate it in the constructor of ``Config`` implementaion class
27-
and make the ``Config`` implementaiton class singleton.
26+
but the simplest way is to generate it in the constructor of ``Config`` implementation class
27+
and make the ``Config`` implementation class singleton.
2828

2929
Here is an example:
3030

0 commit comments

Comments
 (0)