Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo in "Detect dataset changes" algorithm #49027

Merged
merged 1 commit into from
Jun 16, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/analysis/processing/qgsalgorithmdetectdatasetchanges.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ QString QgsDetectVectorChangesAlgorithm::shortHelpString() const
"When comparing features, the original and revised feature geometries will be compared against each other. Depending "
"on the Geometry Comparison Behavior setting, the comparison will either be made using an exact comparison (where "
"geometries must be an exact match for each other, including the order and count of vertices) or a topological "
"comparison only (where are geometries area considered equal if all of their component edges overlap. E.g. "
"comparison only (where geometries are considered equal if all of their component edges overlap. E.g. "
"lines with the same vertex locations but opposite direction will be considered equal by this method). If the topological "
"comparison is selected then any z or m values present in the geometries will not be compared.\n\n"
"By default, the algorithm compares all attributes from the original and revised features. If the Attributes to Consider for Match "
Expand All @@ -92,7 +92,7 @@ QString QgsDetectVectorChangesAlgorithm::shortHelpString() const
"raised and the resultant outputs may be misleading.\n\n"
"The algorithm outputs three layers, one containing all features which are considered to be unchanged between the revisions, "
"one containing features deleted from the original layer which are not present in the revised layer, and one containing features "
"add to the revised layer which are not present in the original layer." );
"added to the revised layer which are not present in the original layer." );
}

QString QgsDetectVectorChangesAlgorithm::shortDescription() const
Expand Down