diff --git a/docs/CARS.md b/docs/CARS.md
index 1109a2aeda..ab20bce8da 100644
--- a/docs/CARS.md
+++ b/docs/CARS.md
@@ -265,7 +265,7 @@ A supported vehicle is one that just works when you install a comma three. All s
### Footnotes
1Experimental openpilot longitudinal control is available behind a toggle; the toggle is only available in non-release branches such as `devel` or `master-ci`.
2By default, this car will use the stock Adaptive Cruise Control (ACC) for longitudinal control. If the Driver Support Unit (DSU) is disconnected, openpilot ACC will replace stock ACC. NOTE: disconnecting the DSU disables Automatic Emergency Braking (AEB).
-3Refers only to the Focus Mk4 (C519) available in Europe/China/Taiwan/Australasia, not the Focus Mk3 (C346) inNorth and South America/Southeast Asia.
+3Refers only to the Focus Mk4 (C519) available in Europe/China/Taiwan/Australasia, not the Focus Mk3 (C346) in North and South America/Southeast Asia.
4Requires a community built ASCM harness. NOTE: disconnecting the ASCM disables Automatic Emergency Braking (AEB).
52019 Honda Civic 1.6L Diesel Sedan does not have ALC below 12mph.
6Requires a red panda for this CAN FD car. All the hardware needed is sold in the CAN FD kit.
diff --git a/selfdrive/car/ford/values.py b/selfdrive/car/ford/values.py
index 70da236a0c..925628c8d8 100644
--- a/selfdrive/car/ford/values.py
+++ b/selfdrive/car/ford/values.py
@@ -61,7 +61,7 @@ DBC: Dict[str, Dict[str, str]] = defaultdict(lambda: dbc_dict("ford_lincoln_base
class Footnote(Enum):
FOCUS = CarFootnote(
- "Refers only to the Focus Mk4 (C519) available in Europe/China/Taiwan/Australasia, not the Focus Mk3 (C346) in" +
+ "Refers only to the Focus Mk4 (C519) available in Europe/China/Taiwan/Australasia, not the Focus Mk3 (C346) in " +
"North and South America/Southeast Asia.",
Column.MODEL,
)