From 967e378f197604f67cd48ddba259c191992ea6b0 Mon Sep 17 00:00:00 2001
From: vjpai <vpai@google.com>
Date: Fri, 10 Jun 2016 00:29:03 -0700
Subject: [PATCH] More docs

---
 doc/cpp-style-guide.md | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/doc/cpp-style-guide.md b/doc/cpp-style-guide.md
index c16f6ffc42..5feefae06a 100644
--- a/doc/cpp-style-guide.md
+++ b/doc/cpp-style-guide.md
@@ -34,6 +34,7 @@ C++11 constructs. Here are some guidelines, to be extended as needed:
     // code
   }
   ```
+  
   are not allowed and should be replaced with code such as
   ```c
   for (auto it = vec.begin; it != vec.end(); it++) {
@@ -41,6 +42,7 @@ C++11 constructs. Here are some guidelines, to be extended as needed:
     // code
   }
   ```
+  
 - Do not use lambda of any kind (no capture, explicit capture, or
 default capture). Other C++ functional features such as
 `std::function` or `std::bind` are allowed
-- 
GitLab