From f4d0606d06ea2cb6ec7758f0e263371b2aa3648d Mon Sep 17 00:00:00 2001 From: s-hadinger <49731213+s-hadinger@users.noreply.github.com> Date: Fri, 27 Dec 2024 17:56:39 +0100 Subject: [PATCH] Berry fix typo (#22725) --- lib/libesp32/berry/src/be_byteslib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libesp32/berry/src/be_byteslib.h b/lib/libesp32/berry/src/be_byteslib.h index bcf98d125b8f..09e8a05c502e 100644 --- a/lib/libesp32/berry/src/be_byteslib.h +++ b/lib/libesp32/berry/src/be_byteslib.h @@ -19,7 +19,7 @@ #define BYTES_SIZE_SOLIDIFIED -3 /* is size is -3, then the bytes object is solidified and cannot be resized nor modified */ #define BYTES_RESIZE_ERROR "attribute_error" -#define BYTES_RESIZE_MESSAGE "bytes object size if fixed and cannot be resized" +#define BYTES_RESIZE_MESSAGE "bytes object size is fixed and cannot be resized" #define BYTES_READ_ONLY_MESSAGE "bytes object is read only" /* be_raise(vm, BYTES_RESIZE_ERROR, BYTES_RESIZE_MESSAGE); */