Skip to content

Commit

Permalink
Merge pull request #563 from garden-io/doc-fix
Browse files Browse the repository at this point in the history
docs(simple-project): fix service names
  • Loading branch information
thsig authored Feb 25, 2019
2 parents c1cc2e9 + 9f7d752 commit 9628da7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions docs/examples/simple-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ and add the following:
```yaml
module:
description: Node service container
name: node-module
name: node-service
type: container
```

Expand All @@ -108,7 +108,7 @@ modules:
command: []
dependencies: []
description: Node service container
name: node-module
name: node-service
outputs: {}
path: /Users/eysi/code/garden-io/simple-project-start/services/node-service
serviceConfigs: []
Expand All @@ -122,7 +122,7 @@ Under the `module` directive of our `services/node-service/garden.yml` file we c
```yaml
module:
description: Node service container
name: node-module
name: node-service
type: container
services:
- name: node-service
Expand Down Expand Up @@ -173,7 +173,7 @@ and add the following:
```yaml
module:
description: Go service container
name: go-module
name: go-service
type: container
services:
- name: go-service
Expand Down Expand Up @@ -331,7 +331,7 @@ The entire module config should now look like this:
```yaml
module:
description: Node service container
name: node-module
name: node-service
type: container
services:
- name: node-service
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-project/services/go-service/garden.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module:
name: go-module
name: go-service
description: Go service container
type: container
services:
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-project/services/node-service/garden.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module:
name: node-module
name: node-service
description: Node service container
type: container
services:
Expand Down

0 comments on commit 9628da7

Please sign in to comment.