From 68632bd9f4e295e3661a8e2b040d4b9f6abb546e Mon Sep 17 00:00:00 2001 From: Sam Phillips Date: Mon, 25 Nov 2024 19:52:42 -0500 Subject: [PATCH] fix: Update chat.md docs to correct interpolation Update quotes to fix interpolation --- docs/chat.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/chat.md b/docs/chat.md index e79e329bb3..4d14172937 100644 --- a/docs/chat.md +++ b/docs/chat.md @@ -132,7 +132,7 @@ const changeUserName = ai.defineTool( await ai.currentSession().updateState({ userName: input.newUserName, }); - return 'changed username to ${input.newUserName}'; + return `changed username to ${input.newUserName}`; } ); ```