summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 95a0b93..a1968b8 100644
--- a/README.md
+++ b/README.md
@@ -174,7 +174,7 @@ list of one.
~~~scenario
given server
when I run max-client.py 1
-then answer is 0
+then answer is 1
~~~
## Find max of a list of two
@@ -188,7 +188,7 @@ two elements.
~~~scenario
given server
when I run max-client.py 5 5
-then answer is 0
+then answer is 5
~~~
### List of two numbers in order
@@ -196,7 +196,7 @@ then answer is 0
~~~scenario
given server
when I run max-client.py 5 6
-then answer is 0
+then answer is 6
~~~
### List of two numbers in wrong order
@@ -204,7 +204,7 @@ then answer is 0
~~~scenario
given server
when I run max-client.py 6 5
-then answer is 1
+then answer is 6
~~~