From b8538c2c12620f16fada80824f50f70fbf6de1d9 Mon Sep 17 00:00:00 2001 From: Oxan van Leeuwen Date: Mon, 6 Mar 2023 00:02:36 +0100 Subject: [PATCH] Fix typo (#4515) --- esphome/core/macros.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/core/macros.h b/esphome/core/macros.h index 70ceaf58f4..ee53d20ad1 100644 --- a/esphome/core/macros.h +++ b/esphome/core/macros.h @@ -1,4 +1,4 @@ #pragma once -// Helper macro to define a version code, whos evalue can be compared against other version codes. +// Helper macro to define a version code, whose value can be compared against other version codes. #define VERSION_CODE(major, minor, patch) ((major) << 16 | (minor) << 8 | (patch))