From 2fdb96388faa6ef94fd768ba921dcf0a3ffe9a39 Mon Sep 17 00:00:00 2001
From: Lisa Carey <lcarey@google.com>
Date: Thu, 12 Feb 2015 17:51:13 +0000
Subject: [PATCH] Style tweaks

---
 README.md | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/README.md b/README.md
index bd0738447a..89e8d2942c 100644
--- a/README.md
+++ b/README.md
@@ -264,11 +264,12 @@ As you can see, the class `GreetingsImpl` implements the interface
     -`Helloworld.HelloRequest`: the request
     -`StreamObserver<Helloworld.HelloReply>`: a response observer, which is
     a special interface for the server to call with its response
+
 To return our response to the client and complete the call:
-1. We construct and populate a `HelloReply` response object with our exciting
+    1. We construct and populate a `HelloReply` response object with our exciting
 message, as specified in our interface definition.
-2. We call `responseObserver.onValue()` with the `HelloReply` that we want to send back to the client.
-3. Finally, we call `responseObserver.onCompleted()` to indicate that we're
+    2. We call `responseObserver.onValue()` with the `HelloReply` that we want to send back to the client.
+    3. Finally, we call `responseObserver.onCompleted()` to indicate that we're
 finished dealing with this RPC.
 
 
-- 
GitLab