Skip to content

Commit 567a8d9

Browse files
Thomas Darimontodrotbohm
Thomas Darimont
authored andcommitted
DATAMONGO-713 - Fixed some spelling errors in README.md.
1 parent ceef18d commit 567a8d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Spring Data MongoDB project aims to provide a familiar and consistent Spring
66

77
## Getting Help
88

9-
For a comprehensive treatmet of all the Spring Data MongoDB features, please refer to:
9+
For a comprehensive treatment of all the Spring Data MongoDB features, please refer to:
1010

1111
* the [User Guide](http://static.springsource.org/spring-data/data-mongodb/docs/current/reference/html/)
1212
* the [JavaDocs](http://static.springsource.org/spring-data/data-mongodb/docs/current/api/) have extensive comments in them as well.
@@ -57,7 +57,7 @@ MongoTemplate is the central support class for Mongo database operations. It pro
5757

5858
### Spring Data repositories
5959

60-
To simplify the creation of data repositories Sprin Data MongoDB provides a generic repository programming model. It will automatically create a repository proxy for you that adds implementations of finder methods you specify on an interface.
60+
To simplify the creation of data repositories Spring Data MongoDB provides a generic repository programming model. It will automatically create a repository proxy for you that adds implementations of finder methods you specify on an interface.
6161

6262
For example, given a `Person` class with first and last name properties, a `PersonRepository` interface that can query for `Person` by last name and when the first name matches a like expression is shown below:
6363

@@ -70,7 +70,7 @@ public interface PersonRepository extends CrudRepository<Person, Long> {
7070
}
7171
```
7272

73-
The queries issued on execution will be derived from the method name. Exending `CrudRepository` causes CRUD methods being pulled into the interface so that you can easily save and find single entities and collections of them.
73+
The queries issued on execution will be derived from the method name. Extending `CrudRepository` causes CRUD methods being pulled into the interface so that you can easily save and find single entities and collections of them.
7474

7575
You can have Spring automatically create a proxy for the interface by using the following JavaConfig:
7676

0 commit comments

Comments
 (0)