[llvm] 8768965 - Support: Fix missing whitespace in comment for inconvertibleErrorCode(), NFC

Duncan P. N. Exon Smith via llvm-commits llvm-commits at lists.llvm.org
Thu Sep 23 08:09:55 PDT 2021


Author: Duncan P. N. Exon Smith
Date: 2021-09-23T11:09:26-04:00
New Revision: 87689657e28cd78faf2e07e859fb5b96f7a1f8fc

URL: https://github.com/llvm/llvm-project/commit/87689657e28cd78faf2e07e859fb5b96f7a1f8fc
DIFF: https://github.com/llvm/llvm-project/commit/87689657e28cd78faf2e07e859fb5b96f7a1f8fc.diff

LOG: Support: Fix missing whitespace in comment for inconvertibleErrorCode(), NFC

Added: 
    

Modified: 
    llvm/include/llvm/Support/Error.h

Removed: 
    


################################################################################
diff  --git a/llvm/include/llvm/Support/Error.h b/llvm/include/llvm/Support/Error.h
index e84033d530e0a..1e7201ed1b09f 100644
--- a/llvm/include/llvm/Support/Error.h
+++ b/llvm/include/llvm/Support/Error.h
@@ -1155,7 +1155,7 @@ class ECError : public ErrorInfo<ECError> {
 /// It should only be used in this situation, and should never be used where a
 /// sensible conversion to std::error_code is available, as attempts to convert
 /// to/from this error will result in a fatal error. (i.e. it is a programmatic
-///error to try to convert such a value).
+/// error to try to convert such a value).
 std::error_code inconvertibleErrorCode();
 
 /// Helper for converting an std::error_code to a Error.


        


More information about the llvm-commits mailing list