Pārlūkot izejas kodu

Replace txt block with sh block

Greg Turnquist 13 gadus atpakaļ
vecāks
revīzija
aedd5d3cf1
2 mainītis faili ar 6 papildinājumiem un 6 dzēšanām
  1. 3
    3
      README.ftl.md
  2. 3
    3
      README.md

+ 3
- 3
README.ftl.md Parādīt failu

@@ -69,7 +69,7 @@ $ mvn package spring-boot:run
69 69
 
70 70
 You should see some output like this:
71 71
 
72
-```txt
72
+```sh
73 73
 Let's inspect the beans provided by Spring Boot:
74 74
 application
75 75
 beanNameHandlerMapping
@@ -148,7 +148,7 @@ $ mvn package spring-boot:run
148 148
 
149 149
 Now check out the output:
150 150
 
151
-```txt
151
+```sh
152 152
 Let's inspect the beans provided by Spring Boot:
153 153
 application
154 154
 beanNameHandlerMapping
@@ -216,7 +216,7 @@ class ThisWillActuallyRun {
216 216
 ```
217 217
 Spring Boot automatically laces the code with key annotations and Groovy Grapes to pull down needed libraries to make the app run. With Spring Boot's CLI tool, all you need do is:
218 218
 
219
-```txt
219
+```sh
220 220
 $ spring run app.groovy
221 221
 $ curl localhost:8080
222 222
 Hello World!

+ 3
- 3
README.md Parādīt failu

@@ -197,7 +197,7 @@ $ mvn package spring-boot:run
197 197
 
198 198
 You should see some output like this:
199 199
 
200
-```txt
200
+```sh
201 201
 Let's inspect the beans provided by Spring Boot:
202 202
 application
203 203
 beanNameHandlerMapping
@@ -316,7 +316,7 @@ $ mvn package spring-boot:run
316 316
 
317 317
 Now check out the output:
318 318
 
319
-```txt
319
+```sh
320 320
 Let's inspect the beans provided by Spring Boot:
321 321
 application
322 322
 beanNameHandlerMapping
@@ -384,7 +384,7 @@ class ThisWillActuallyRun {
384 384
 ```
385 385
 Spring Boot automatically laces the code with key annotations and Groovy Grapes to pull down needed libraries to make the app run. With Spring Boot's CLI tool, all you need do is:
386 386
 
387
-```txt
387
+```sh
388 388
 $ spring run app.groovy
389 389
 $ curl localhost:8080
390 390
 Hello World!