Skip to content

Commit e26f123

Browse files
committed
tutorial: Make "Position" type consistent
I think this change was just overlooked in #355 Without this change, running the server from Server.lhs and client from Client.lhs will result in something like decodeError = "Error in $: The key \"x\" was not found
1 parent 89cb306 commit e26f123

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/tutorial/Client.lhs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Also, we need examples for some domain specific data types:
2727
2828
``` haskell
2929
data Position = Position
30-
{ x :: Int
31-
, y :: Int
30+
{ xCoord :: Int
31+
, yCoord :: Int
3232
} deriving (Show, Generic)
3333
3434
instance FromJSON Position
@@ -135,7 +135,7 @@ run = do
135135
Here's the output of the above code running against the appropriate server:
136136
137137
``` bash
138-
Position {x = 10, y = 10}
138+
Position {xCoord = 10, yCoord = 10}
139139
HelloMessage {msg = "Hello, servant"}
140140
Email {from = "[email protected]", to = "[email protected]", subject = "Hey Alp, we miss you!", body = "Hi Alp,\n\nSince you've recently turned 26, have you checked out our latest haskell, mathematics products? Give us a visit!"}
141141
```

0 commit comments

Comments
 (0)