From fad9cba8f58ba9979f390a49cf174ec9fcec29a6 Mon Sep 17 00:00:00 2001 From: Erich Keane Date: Mon, 15 Jun 2020 16:20:32 -0700 Subject: [PATCH] [Docs] Add missing space, requested on c08ea07 --- llvm/docs/CodingStandards.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/docs/CodingStandards.rst b/llvm/docs/CodingStandards.rst index adf6e90..861ab05 100644 --- a/llvm/docs/CodingStandards.rst +++ b/llvm/docs/CodingStandards.rst @@ -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(D)) - for(auto *A : D.attrs()) + for (auto *A : D.attrs()) handleAttr(A); -- 2.7.4