This is an automated email from the ASF dual-hosted git repository.
igal pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/flink-statefun-playground.git
The following commit(s) were added to refs/heads/dev by this push:
new 0c6b53d [hotfix] typo backquote
0c6b53d is described below
commit 0c6b53d12f6d9fd3ef56a0c018c8f01aba641854
Author: Siddique Ahmad <[email protected]>
AuthorDate: Sun Feb 6 15:47:52 2022 +0500
[hotfix] typo backquote
backquote was opened but was not closed.
---
javascript/greeter/README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/javascript/greeter/README.md b/javascript/greeter/README.md
index b5992a3..efc2bd1 100644
--- a/javascript/greeter/README.md
+++ b/javascript/greeter/README.md
@@ -45,7 +45,7 @@ docker-compose restart producer
```
Feeling curious? add the following log to the `person` function at
[functions.js](functions.js):
-```console.log(`Hello there ${context.self.id}!");```.
+```console.log(`Hello there ${context.self.id}!`);```.
Then, rebuild and restart only the `functions` service.