[PATCH] D22849: Fix a typo, depricated -> deprecated
Martin Storsjö via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 27 03:51:22 PDT 2016
mstorsjo created this revision.
mstorsjo added a subscriber: llvm-commits.
https://reviews.llvm.org/D22849
Files:
include/llvm/Support/CommandLine.h
tools/llvm-mc/llvm-mc.cpp
Index: tools/llvm-mc/llvm-mc.cpp
===================================================================
--- tools/llvm-mc/llvm-mc.cpp
+++ tools/llvm-mc/llvm-mc.cpp
@@ -66,7 +66,7 @@
clEnumValN(DebugCompressionType::DCT_Zlib, "zlib",
"Use zlib compression"),
clEnumValN(DebugCompressionType::DCT_ZlibGnu, "zlib-gnu",
- "Use zlib-gnu compression (depricated)"),
+ "Use zlib-gnu compression (deprecated)"),
clEnumValEnd));
static cl::opt<bool>
Index: include/llvm/Support/CommandLine.h
===================================================================
--- include/llvm/Support/CommandLine.h
+++ include/llvm/Support/CommandLine.h
@@ -1730,7 +1730,7 @@
/// the control of the client. The options should be modified before calling
/// llvm::cl::ParseCommandLineOptions().
///
-/// Hopefully this API can be depricated soon. Any situation where options need
+/// Hopefully this API can be deprecated soon. Any situation where options need
/// to be modified by tools or libraries should be handled by sane APIs rather
/// than just handing around a global list.
StringMap<Option *> &getRegisteredOptions(SubCommand &Sub = *TopLevelSubCommand);
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D22849.65694.patch
Type: text/x-patch
Size: 1178 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20160727/e4666979/attachment.bin>
More information about the llvm-commits
mailing list