Skip to content

Commit 1d1cd51

Browse files
committed
md fixes again
1 parent fee17cc commit 1d1cd51

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ four fundamental principles:
2828
3. Not a single mutable class
2929
([why they are bad?][immutable])
3030
4. Not a single `instanceof` keyword, type casting, or reflection
31-
([why?][cating])
31+
([why?][casting])
3232

3333
Of course, there are no configuration files.
3434
Besides that, these are more traditional features, out of the box:
@@ -85,7 +85,6 @@ may help you too.
8585
* [Backward compatibility](#backward-compatibility)
8686
* [Version pattern for RESTful API](#version-pattern-for-restful-api)
8787
* [How to contribute](#how-to-contribute)
88-
* [Got questions?](#got-questions)
8988

9089
## Quick Start
9190

@@ -854,7 +853,7 @@ public final class TkIndex implements Take {
854853
An HTTP response will contain this header, which will place
855854
a `auth` cookie into the user's browser:
856855
857-
```
856+
```text
858857
HTTP/1.1 200 OK
859858
Set-Cookie: auth="John Doe"
860859
```
@@ -1066,7 +1065,7 @@ new TkSlf4j(
10661065
You are free to use any build tool, but we recommend Maven.
10671066
This is how your project directory layout may/should look like:
10681067

1069-
```
1068+
```text
10701069
src/
10711070
main/
10721071
java/
@@ -1128,7 +1127,7 @@ The URL should NOT contain the versions, but the type requested.
11281127

11291128
For example:
11301129

1131-
```
1130+
```text
11321131
===>
11331132
GET /architect/256 HTTP/1.1
11341133
Accept: application/org.takes.architect-v1+xml
@@ -1142,7 +1141,7 @@ Content-Type: application/org.takes.architect-v1+xml
11421141

11431142
Then clients aware of newer version of this service can call:
11441143

1145-
```
1144+
```text
11461145
===>
11471146
GET /architect/256 HTTP/1.1
11481147
Accept: application/org.takes.architect-v2+xml

0 commit comments

Comments
 (0)