From 05704e785a83378caf26a82d0e19f3ca3b595c77 Mon Sep 17 00:00:00 2001 From: Arthur Eubanks Date: Fri, 17 Jun 2022 11:29:07 -0700 Subject: [PATCH] [docs] Fix typo --- llvm/docs/OpaquePointers.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/docs/OpaquePointers.rst b/llvm/docs/OpaquePointers.rst index 9150b87e0c07..5d0e7ae3357e 100644 --- a/llvm/docs/OpaquePointers.rst +++ b/llvm/docs/OpaquePointers.rst @@ -52,7 +52,7 @@ Historically LLVM was some sort of type-safe subset of C. Having pointee types provided an extra layer of checks to make sure that the Clang frontend matched its frontend values/operations with the corresponding LLVM IR. However, as other languages like C++ adopted LLVM, the community realized that pointee types were -more of a hinderance for LLVM development and that the extra type checking with +more of a hindrance for LLVM development and that the extra type checking with some frontends wasn't worth it. LLVM's type system was `originally designed