From 5be24a386d6594a9715b939c423736606b98ee75 Mon Sep 17 00:00:00 2001 From: Jakub Kuderski Date: Mon, 24 Jan 2022 10:18:13 -0500 Subject: [PATCH] [docs] Add missing closing brace --- docs/CodingStandards.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/CodingStandards.md b/docs/CodingStandards.md index e1793c6eab..2076fabd5c 100644 --- a/docs/CodingStandards.md +++ b/docs/CodingStandards.md @@ -220,6 +220,7 @@ Expected getFileSize(StringRef path) { if (exists(path)) return file_size(path); return createResultError(Result::NotFound, Twine("File ") + path + " does not exist"); +} // An internal LLPC function. Error readSpirvFile(StringRef path) {