From eafa89c52d112b00a467ed879f30dcae1a3c6dd7 Mon Sep 17 00:00:00 2001 From: Xi Yan Date: Tue, 29 Oct 2024 17:10:19 -0700 Subject: [PATCH] fix --- docs/source/getting_started/index.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/source/getting_started/index.md b/docs/source/getting_started/index.md index e5c6a196f..6d952f5a4 100644 --- a/docs/source/getting_started/index.md +++ b/docs/source/getting_started/index.md @@ -112,11 +112,12 @@ inference> Considering your interest in Switzerland, here are some neighboring c ```{tab} Python ```python def hello(): - print("Hello!") + print("Hello, World!") ``` -```{tab} Javascript +```{tab} JavaScript ```javascript function hello() { - console.log("Hello!"); + console.log("Hello, World!"); } ``` +```