Skip to content

Commit

Permalink
Make use of full stop consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter York committed Sep 18, 2023
1 parent f8a1c2a commit 9c6b260
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/lib/browse/layers/CrossingsLayerControl.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@
let description =
descriptions.get(crossingType) ??
`Crossing with unknown type (${crossingType}).`;
return `<p>${description}. Click for details.</p>`;
return `<p>${description} Click for details.</p>`;
}
const descriptions: Map<string, string> = new Map([
[
"no",
"Location where crossing is impossible/illegal but where there is a clear desire line to cross.",
],
["traffic_signals", "Signalised crossing"],
["marked", "Crossing with no traffic signals"],
["uncontrolled", "Crossing with no traffic signals"],
["unmarked", "Crossing with no markings or signals"],
["zebra", "Zebra crossing"],
["island", "Crossing with an island"],
["traffic_signals", "Signalised crossing."],
["marked", "Crossing with no traffic signals."],
["uncontrolled", "Crossing with no traffic signals."],
["unmarked", "Crossing with no markings or signals."],
["zebra", "Zebra crossing."],
["island", "Crossing with an island."],
[
"informal",
"Informal crossing with an obvious desire line, but no official infrastructure to support it",
"Informal crossing with an obvious desire line, but no official infrastructure to support it.",
],
]);
Expand Down

0 comments on commit 9c6b260

Please sign in to comment.