From 272f132b821ad8ab15d02dad22ad0b364a3ec93e Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Wed, 14 Feb 2018 01:05:40 -0600
Subject: [PATCH] Remove stray ` from STM32F1 HAL

As noted in #8585
---
 Marlin/src/HAL/HAL_STM32F1/persistent_store_impl.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/src/HAL/HAL_STM32F1/persistent_store_impl.cpp b/Marlin/src/HAL/HAL_STM32F1/persistent_store_impl.cpp
index f5c6ec58bd..bff4610085 100644
--- a/Marlin/src/HAL/HAL_STM32F1/persistent_store_impl.cpp
+++ b/Marlin/src/HAL/HAL_STM32F1/persistent_store_impl.cpp
@@ -83,7 +83,7 @@ bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc) {
 bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const bool writing/*=true*/) {
   for (int i = 0; i < size; i++) {
     uint8_t c = HAL_STM32F1_eeprom_content[pos + i];
-    if (writing) value[i] = c`;
+    if (writing) value[i] = c;
     crc16(crc, &c, 1);
   }
   pos += size;