Skip to content

Commit 5dae240

Browse files
Use " for better readability
1 parent 105f954 commit 5dae240

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
someValue: 4711
22

33
example:
4-
the-greeting: Hello, World!
4+
the-greeting: "Hello, World!"
55
interval: 1000
66
precision: 42.23
77
servers:
8-
- name: springbootbuch
9-
url: http://springbootbuch.de
10-
- name: bootifultodos
11-
url: http://bootifultodos.de
8+
- name: "springbootbuch"
9+
url: "http://springbootbuch.de"
10+
- name: "bootifultodos"
11+
url: "http://bootifultodos.de"
1212
environments:
1313
dev:
14-
foo: bar
15-
test: val
14+
foo: "bar"
15+
test: "val"
1616
prod:
17-
foo: prodbar
18-
test: prodval
17+
foo: "prodbar"
18+
test: "prodval"

src/main/resources/application.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,33 @@
11
someValue: 4711
22

33
example:
4-
the-greeting: Hello, World!
4+
the-greeting: "Hello, World!"
55
interval: 1000
66
precision: 42.23
77
servers:
8-
- name: springbootbuch
9-
url: http://springbootbuch.de
8+
- name: "springbootbuch"
9+
url: "http://springbootbuch.de"
1010

1111
---
1212
spring:
13-
profiles: demo1
13+
profiles: "demo1"
1414

1515
example:
16-
the-greeting: Hello, Demo1!
16+
the-greeting: "Hello, Demo1!"
1717
servers:
18-
- name: demo
19-
url: http://test.com
18+
- name: "demo"
19+
url: "http://test.com"
2020

2121
---
2222
spring:
23-
profiles: demo2
23+
profiles: "demo2"
2424

2525
example:
26-
the-greeting: Hello, Demo2!
26+
the-greeting: "Hello, Demo2!"
2727
interval: 2000
2828
servers:
29-
- name: bootifultodos
30-
url: http://bootifultodos.de
29+
- name: "bootifultodos"
30+
url: "http://bootifultodos.de"
3131

3232
---
3333
spring:

0 commit comments

Comments
 (0)