Skip to content

Commit ba24d9d

Browse files
committed
Minor adjustment in comment
1 parent ee7f3e1 commit ba24d9d

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

api/src/main/java/com/graphhopper/config/Profile.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,9 @@
2121
import com.graphhopper.util.PMap;
2222

2323
/**
24-
* Corresponds to the `profiles` section in `config.yml` and specifies the properties of a routing profile. The name
25-
* used here needs to be used when setting up CH/LM preparations. See also the documentation in `config-example.yml'
24+
* Corresponds to an entry of the `profiles` section in `config.yml` and specifies the properties of a routing profile.
25+
* The name used here needs to be used when setting up CH/LM preparations. See also the documentation in
26+
* `config-example.yml'
2627
*
2728
* @see CHProfile
2829
* @see LMProfile

core/src/main/java/com/graphhopper/routing/ch/CHPreparationHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
public class CHPreparationHandler {
4545
private final Logger LOGGER = LoggerFactory.getLogger(getClass());
4646
private final List<PrepareContractionHierarchies> preparations = new ArrayList<>();
47-
// we first add the profile configs and later read them to create the actual profile objects (because they require
47+
// we first add the profiles and later read them to create the config objects (because they require
4848
// the actual Weightings)
4949
private final List<CHProfile> chProfiles = new ArrayList<>();
5050
private final List<CHConfig> chConfigs = new ArrayList<>();

core/src/main/java/com/graphhopper/routing/lm/LMPreparationHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class LMPreparationHandler {
4949
private int activeLandmarkCount = 8;
5050

5151
private final List<PrepareLandmarks> preparations = new ArrayList<>();
52-
// we first add the profile configs and later read them to create the actual profile objects (because they require
52+
// we first add the profiles and later read them to create the config objects (because they require
5353
// the actual Weightings)
5454
private final List<LMProfile> lmProfiles = new ArrayList<>();
5555
private final List<LMConfig> lmConfigs = new ArrayList<>();

0 commit comments

Comments
 (0)