From e12713d70b9b2cf7b0ea713a50d33111428e4fd8 Mon Sep 17 00:00:00 2001 From: Philip Howard Date: Mon, 4 Oct 2021 19:11:03 +0100 Subject: [PATCH] pio_assembler: typo fix (#538) Change pleaced to placed --- tools/pioasm/pio_assembler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/pioasm/pio_assembler.cpp b/tools/pioasm/pio_assembler.cpp index 7a83831..469d733 100644 --- a/tools/pioasm/pio_assembler.cpp +++ b/tools/pioasm/pio_assembler.cpp @@ -127,7 +127,7 @@ void program::set_wrap(const yy::location &l) { throw syntax_error(l, msg.str()); } if (instructions.empty()) { - throw syntax_error(l, ".wrap cannot be pleaced before the first program instruction"); + throw syntax_error(l, ".wrap cannot be placed before the first program instruction"); } wrap = resolvable_int(l, instructions.size() - 1); }