@@ -28,7 +28,7 @@ four fundamental principles:
28
28
3 . Not a single mutable class
29
29
([ why they are bad?] [ immutable ] )
30
30
4 . Not a single ` instanceof ` keyword, type casting, or reflection
31
- ([ why?] [ cating ] )
31
+ ([ why?] [ casting ] )
32
32
33
33
Of course, there are no configuration files.
34
34
Besides that, these are more traditional features, out of the box:
@@ -85,7 +85,6 @@ may help you too.
85
85
* [ Backward compatibility] ( #backward-compatibility )
86
86
* [ Version pattern for RESTful API] ( #version-pattern-for-restful-api )
87
87
* [ How to contribute] ( #how-to-contribute )
88
- * [ Got questions?] ( #got-questions )
89
88
90
89
## Quick Start
91
90
@@ -854,7 +853,7 @@ public final class TkIndex implements Take {
854
853
An HTTP response will contain this header, which will place
855
854
a `auth` cookie into the user's browser:
856
855
857
- ```
856
+ ```text
858
857
HTTP/1.1 200 OK
859
858
Set-Cookie: auth=" John Doe "
860
859
```
@@ -1066,7 +1065,7 @@ new TkSlf4j(
1066
1065
You are free to use any build tool, but we recommend Maven.
1067
1066
This is how your project directory layout may/should look like:
1068
1067
1069
- ```
1068
+ ``` text
1070
1069
src/
1071
1070
main/
1072
1071
java/
@@ -1128,7 +1127,7 @@ The URL should NOT contain the versions, but the type requested.
1128
1127
1129
1128
For example:
1130
1129
1131
- ```
1130
+ ``` text
1132
1131
===>
1133
1132
GET /architect/256 HTTP/1.1
1134
1133
Accept: application/org.takes.architect-v1+xml
@@ -1142,7 +1141,7 @@ Content-Type: application/org.takes.architect-v1+xml
1142
1141
1143
1142
Then clients aware of newer version of this service can call:
1144
1143
1145
- ```
1144
+ ``` text
1146
1145
===>
1147
1146
GET /architect/256 HTTP/1.1
1148
1147
Accept: application/org.takes.architect-v2+xml
0 commit comments