From b07cd634b82f5e2f8d44b4563f2c2996727c4c29 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Sun, 11 Oct 2020 11:25:22 +0100 Subject: [PATCH] Fix Wdocumentation warning. NFCI. Add a space after /param names before any commas otherwise the doxygen parsers get confused. --- include/llvm/Object/MachOUniversalWriter.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/Object/MachOUniversalWriter.h b/include/llvm/Object/MachOUniversalWriter.h index 606db94c9f2..cdfedcf0379 100644 --- a/include/llvm/Object/MachOUniversalWriter.h +++ b/include/llvm/Object/MachOUniversalWriter.h @@ -43,9 +43,9 @@ public: Slice(const MachOObjectFile &O, uint32_t Align); - /// This constructor takes prespecified \param CPUType, \param CPUSubType, - /// \param ArchName, \param Align instead of inferring them from the archive - /// memebers. + /// This constructor takes pre-specified \param CPUType , \param CPUSubType , + /// \param ArchName , \param Align instead of inferring them from the archive + /// members. Slice(const Archive &A, uint32_t CPUType, uint32_t CPUSubType, std::string ArchName, uint32_t Align);