Fix typos in documentations.

Fix typos in READMEs, javadoc, comments and code.

Original pull request #642
This commit is contained in:
Marc Wrobel
2022-07-18 16:43:44 +02:00
committed by Jens Schauder
parent 1aec184ff0
commit ce994f9ea0
57 changed files with 83 additions and 83 deletions

View File

@@ -51,7 +51,7 @@ public class JpaStyleDocRefTests {
@Autowired MongoOperations operations;
/**
* Load linked documents where where the actual reference is stored in the obverse side of the association.
* Load linked documents where the actual reference is stored in the obverse side of the association.
*/
@Test
void saveAndLoadJpaStyleRelation() {
@@ -63,12 +63,12 @@ public class JpaStyleDocRefTests {
Employee employee1 = new Employee("greedo-tetsu-jr", "greedo");
employee1.setManagerId(manager.getId()); // establish the link to the manager document
operations.save(employee1);
// no need to update he manager document after save of employee
// no need to update the manager document after save of employee
Employee employee2 = new Employee("boba-fett", "boba");
employee2.setManagerId(manager.getId()); // establish the link to the manager document
operations.save(employee2);
// no need to update he manager document after save of employee
// no need to update the manager document after save of employee
operations.execute(Manager.class, collection -> {

View File

@@ -54,7 +54,7 @@ public class QueryDocRefTests {
@Autowired MongoOperations operations;
/**
* Load linked documents where where the reference is stored on the inverse and evaluated against a non id property on
* Load linked documents where the reference is stored on the inverse and evaluated against a non id property on
* the obverse side of the association.
*/
@Test

View File

@@ -54,7 +54,7 @@ public class SimpleDocRefTests {
@Autowired MongoOperations operations;
/**
* Load linked documents where where the reference is stored on the inverse and evaluated against the id property on
* Load linked documents where the reference is stored on the inverse and evaluated against the id property on
* the obverse side of the association.
*/
@Test