diff --git a/docs/CARS.md b/docs/CARS.md
index 1e862a2f45..48145d78a9 100644
--- a/docs/CARS.md
+++ b/docs/CARS.md
@@ -235,9 +235,9 @@ A supported vehicle is one that just works when you install a comma three. All s
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).
-3Requires a community built ASCM harness. NOTE: disconnecting the ASCM disables Automatic Emergency Braking (AEB).
+3Requires a community built ASCM harness. NOTE: disconnecting the ASCM disables Automatic Emergency Braking (AEB).
42019 Honda Civic 1.6L Diesel Sedan does not have ALC below 12mph.
-5Requires a red panda for this CAN FD car. All the hardware needed is sold in the CAN FD kit.
+5Requires a red panda for this CAN FD car. All the hardware needed is sold in the CAN FD kit.
6openpilot operates above 28mph for Camry 4CYL L, 4CYL LE and 4CYL SE which don't have Full-Speed Range Dynamic Radar Cruise Control.
7Not including the China market Kamiq, which is based on the (currently) unsupported PQ34 platform.
8Refers only to the MQB-based European B8 Passat, not the NMS Passat in the USA/China/Mideast markets.
diff --git a/selfdrive/car/gm/values.py b/selfdrive/car/gm/values.py
index ece128c253..e633ec5f62 100644
--- a/selfdrive/car/gm/values.py
+++ b/selfdrive/car/gm/values.py
@@ -75,7 +75,7 @@ class CAR:
class Footnote(Enum):
OBD_II = CarFootnote(
- 'Requires a community built ASCM harness. ' +
+ 'Requires a community built ASCM harness. ' +
'NOTE: disconnecting the ASCM disables Automatic Emergency Braking (AEB).',
Column.MODEL)
diff --git a/selfdrive/car/hyundai/values.py b/selfdrive/car/hyundai/values.py
index 34c66623c3..eace661266 100644
--- a/selfdrive/car/hyundai/values.py
+++ b/selfdrive/car/hyundai/values.py
@@ -125,8 +125,8 @@ class CAR:
class Footnote(Enum):
# footnotes which mention "red panda" will be replaced with the CAN FD panda kit on the shop page
CANFD = CarFootnote(
- "Requires a red panda for this CAN FD car. " +
- "All the hardware needed is sold in the CAN FD kit.",
+ "Requires a red panda for this CAN FD car. " +
+ "All the hardware needed is sold in the CAN FD kit.",
Column.MODEL, shop_footnote=True)