Просмотр исходного кода

Replace txt block with sh block

Greg Turnquist 13 лет назад
Родитель
Сommit
aedd5d3cf1
2 измененных файлов: 6 добавлений и 6 удалений
  1. 3
    3
      README.ftl.md
  2. 3
    3
      README.md

+ 3
- 3
README.ftl.md Просмотреть файл

69
 
69
 
70
 You should see some output like this:
70
 You should see some output like this:
71
 
71
 
72
-```txt
72
+```sh
73
 Let's inspect the beans provided by Spring Boot:
73
 Let's inspect the beans provided by Spring Boot:
74
 application
74
 application
75
 beanNameHandlerMapping
75
 beanNameHandlerMapping
148
 
148
 
149
 Now check out the output:
149
 Now check out the output:
150
 
150
 
151
-```txt
151
+```sh
152
 Let's inspect the beans provided by Spring Boot:
152
 Let's inspect the beans provided by Spring Boot:
153
 application
153
 application
154
 beanNameHandlerMapping
154
 beanNameHandlerMapping
216
 ```
216
 ```
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:
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
 $ spring run app.groovy
220
 $ spring run app.groovy
221
 $ curl localhost:8080
221
 $ curl localhost:8080
222
 Hello World!
222
 Hello World!

+ 3
- 3
README.md Просмотреть файл

197
 
197
 
198
 You should see some output like this:
198
 You should see some output like this:
199
 
199
 
200
-```txt
200
+```sh
201
 Let's inspect the beans provided by Spring Boot:
201
 Let's inspect the beans provided by Spring Boot:
202
 application
202
 application
203
 beanNameHandlerMapping
203
 beanNameHandlerMapping
316
 
316
 
317
 Now check out the output:
317
 Now check out the output:
318
 
318
 
319
-```txt
319
+```sh
320
 Let's inspect the beans provided by Spring Boot:
320
 Let's inspect the beans provided by Spring Boot:
321
 application
321
 application
322
 beanNameHandlerMapping
322
 beanNameHandlerMapping
384
 ```
384
 ```
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:
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
 $ spring run app.groovy
388
 $ spring run app.groovy
389
 $ curl localhost:8080
389
 $ curl localhost:8080
390
 Hello World!
390
 Hello World!