From fd6511d1409ac03329c4ea1eb4c5a3bff8cdea66 Mon Sep 17 00:00:00 2001 From: Zac Ong <61817066+zzacong@users.noreply.github.com> Date: Tue, 11 Apr 2023 11:00:09 +1000 Subject: [PATCH] fix typo in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 0f38497..b245e5f 100644 --- a/README.md +++ b/README.md @@ -127,13 +127,13 @@ The `secret$` function can be used to scope any expression to the server (secret ```tsx import { secret$ } from '@tanstack/bling' -const secretMessage = secret$('It is a secret!')') +const secretMessage = secret$('It is a secret!') ``` Server Output: ```tsx -const secretMessage = server$('It is a secret!')') +const secretMessage = server$('It is a secret!') ``` Client Output: