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

joshfischer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git


The following commit(s) were added to refs/heads/master by this push:
     new b4d640f410d Remove stray space characters between \ and \n (#3843)
b4d640f410d is described below

commit b4d640f410da0ac4f65736cbf77e1c97790b600b
Author: Jonathan Dowland <[email protected]>
AuthorDate: Wed Jun 29 14:18:32 2022 +0100

    Remove stray space characters between \ and \n (#3843)
    
    The example bash shell commands in this document are wrapped onto multiple 
lines with
    backslashes for legibility. However, there are space characters inserted 
after the backslash
    escapes, breaking the commands: the spaces are being escaped, not the 
newlines. An
    attempt to copy and paste the commands directly from the documentation will 
fail.
    
    Remove the spaces to fix the commands.
    
    Signed-off-by: Jonathan Dowland <[email protected]>
---
 website2/docs/getting-started-docker.md | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/website2/docs/getting-started-docker.md 
b/website2/docs/getting-started-docker.md
index 435e80b261f..b8baeebf374 100644
--- a/website2/docs/getting-started-docker.md
+++ b/website2/docs/getting-started-docker.md
@@ -30,16 +30,16 @@ The official Apache Heron Docker image is located at the 
link below
 In one terminal execute to start Heron in a container
 
 ```bash
-$ docker run -it  --rm \ 
-   -p 8889:8889 \ 
-   -p 8888:8888 \ 
-   --name local-heron \ 
+$ docker run -it  --rm \
+   -p 8889:8889 \
+   -p 8888:8888 \
+   --name local-heron \
    apache/heron:0.20.4-incubating supervisord --nodaemon
 ```
 In another terminal execute the following to deploy a job:
 ```bash
-$ docker exec -it \ 
-   local-heron \ 
+$ docker exec -it \
+   local-heron \
    bash -c "heron submit sandbox  /heron/examples/heron-eco-examples.jar 
org.apache.heron.eco.Eco --eco-config-file /heron/examples/heron_wordcount.yaml"
 ```
 

Reply via email to