From ecee43a23ccee38db6eb153cc87f728fe854c0bc Mon Sep 17 00:00:00 2001 From: sonite Date: Tue, 7 May 2024 20:29:18 +0200 Subject: [PATCH] Update override_board_configuration.rst (#351) When a user copies and pastes the code, they receive an error message if they fail to remove the punctuation. It has now been updated to use a comma instead. --- scripting/examples/override_board_configuration.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripting/examples/override_board_configuration.rst b/scripting/examples/override_board_configuration.rst index fb360971c3..5ed099623b 100644 --- a/scripting/examples/override_board_configuration.rst +++ b/scripting/examples/override_board_configuration.rst @@ -42,5 +42,5 @@ hardware VID/PIDs. # should be array of VID:PID pairs board_config.update("build.hwids", [ ["0x2341", "0x0243"], # 1st pair - ["0x2A03", "0x0043"]. # 2nd pair, etc. - ]) \ No newline at end of file + ["0x2A03", "0x0043"], # 2nd pair, etc. + ])