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

@@ -42,7 +42,7 @@ public interface CustomerRepository extends CrudRepository<Customer, String> {
List<Customer> findByLastname(String lastname, Sort sort);
/**
* Show case for a repository query using geo-spatial functionality.
* Showcase for a repository query using geospatial functionality.
*
* @param point
* @param distance

View File

@@ -45,7 +45,7 @@ class ApplicationConfiguration {
var randomNumber = ThreadLocalRandom.current().nextInt(1, 100);
// withRandomNumber is a so called wither method returning a new instance of the entity with a new value assigned
// withRandomNumber is a so-called wither method returning a new instance of the entity with a new value assigned
return immutablePerson.withRandomNumber(randomNumber);
};
}

View File

@@ -108,7 +108,7 @@ class CustomerRepositoryIntegrationTest {
}
/**
* Test case to show the usage of the geo-spatial APIs to lookup people within a given distance of a reference point.
* Test case to show the usage of the geospatial APIs to lookup people within a given distance of a reference point.
*/
@Test
void exposesGeoSpatialFunctionality() {