From 52d043b07370b255bcae405e4d3872b80da7b362 Mon Sep 17 00:00:00 2001 From: edvan_microsoft Date: Thu, 22 Feb 2024 09:50:54 +0100 Subject: [PATCH] type fix --- python/semantic_kernel/template_engine/blocks/block_errors.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/semantic_kernel/template_engine/blocks/block_errors.py b/python/semantic_kernel/template_engine/blocks/block_errors.py index a85b6de9c636..30967535ce98 100644 --- a/python/semantic_kernel/template_engine/blocks/block_errors.py +++ b/python/semantic_kernel/template_engine/blocks/block_errors.py @@ -44,7 +44,7 @@ class FunctionIdBlockSyntaxError(BlockSyntaxError): def __init__(self, content: str) -> None: super().__init__( f"A FunctionIdBlock is composed of either a plugin name and \ -function name seperated by a single dot, or just a function name. \ +function name separated by a single dot, or just a function name. \ Both plugin and function names can only contain letters, numbers and underscores. \ The content provided was: {content}", )