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