[Docs] Add missing space, requested on c08ea07
authorErich Keane <erich.keane@intel.com>
Mon, 15 Jun 2020 23:20:32 +0000 (16:20 -0700)
committerErich Keane <erich.keane@intel.com>
Mon, 15 Jun 2020 23:20:32 +0000 (16:20 -0700)
llvm/docs/CodingStandards.rst

index adf6e90..861ab05 100644 (file)
@@ -1612,7 +1612,7 @@ belonged to the preceeding condition, or the ``else``.
   // so it shouldn't have braces.  The if also only contains a single statement (the
   // for loop), so it also should omit braces.
   if (isa<FunctionDecl>(D))
-    for(auto *A : D.attrs())
+    for (auto *A : D.attrs())
       handleAttr(A);