1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-19 23:22:16 +03:00

Fix minor typo in generated comment (#8503)

This commit is contained in:
Earle F. Philhower, III 2022-03-05 08:19:17 -08:00 committed by GitHub
parent 24c41524dc
commit a736a95655
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -70,7 +70,7 @@ def generate(path, platform_path, version="unspecified", release = False):
text += "#define ARDUINO_ESP8266_RELEASE \"{}\"\n".format(git_desc)
text += "#define ARDUINO_ESP8266_RELEASE_{}\n".format(git_desc.replace("-","_").replace(".","_"))
else:
text += "#define ARDUINO_ESP8266_DEV 1 // developpment version\n"
text += "#define ARDUINO_ESP8266_DEV 1 // development version\n"
try:
with open(path, "r") as inp: