From 33c7f577e71a9956a1d2c3b9c7645bb7bf5d3e93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wilson=20J=C3=BAnior?= Date: Mon, 22 Jul 2024 11:02:32 -0300 Subject: [PATCH] fix markdown syntax --- src/user_guides/deploy_go_apps.md | 2 +- src/user_guides/deploy_python_apps.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/user_guides/deploy_go_apps.md b/src/user_guides/deploy_go_apps.md index 6e3a008..820156b 100644 --- a/src/user_guides/deploy_go_apps.md +++ b/src/user_guides/deploy_go_apps.md @@ -15,7 +15,7 @@ $ tsuru app create For GO, the app platform is, guess what, go! Let’s be over creative and develop a never-developed tutorial-app: a myapp ``` bash -$ tsuru app create helloworld python +$ tsuru app create helloworld go ``` ## Application code diff --git a/src/user_guides/deploy_python_apps.md b/src/user_guides/deploy_python_apps.md index 76de2f7..3d6851b 100644 --- a/src/user_guides/deploy_python_apps.md +++ b/src/user_guides/deploy_python_apps.md @@ -9,15 +9,15 @@ Creating python applications with tsuru it is so easy. basically you need to mai To create an app, you use the command app create: - ``` bash - $ tsuru app create - ``` +``` bash +$ tsuru app create +``` For Python, the app platform is, guess what, python! Let’s be over creative and develop a never-developed tutorial-app: a myapp - ``` bash - $ tsuru app create myapp python - ``` +``` bash +$ tsuru app create myapp python +``` ## Application code