You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by ig...@apache.org on 2022/02/06 19:16:49 UTC

[flink-statefun-playground] branch release-3.2 updated: [hotfix] typo backquote

This is an automated email from the ASF dual-hosted git repository.

igal pushed a commit to branch release-3.2
in repository https://gitbox.apache.org/repos/asf/flink-statefun-playground.git


The following commit(s) were added to refs/heads/release-3.2 by this push:
     new 8f0149e  [hotfix] typo backquote
8f0149e is described below

commit 8f0149eeb2066efa85876783dfd14ac6e5c13dd9
Author: Siddique Ahmad <Si...@gmail.com>
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.