Fix typos in documentations.
Fix typos in READMEs, javadoc, comments and code. Original pull request #642
This commit is contained in:
committed by
Jens Schauder
parent
1aec184ff0
commit
ce994f9ea0
@@ -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
|
||||
|
||||
@@ -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);
|
||||
};
|
||||
}
|
||||
|
||||
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user