summaryrefslogtreecommitdiffstats
path: root/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2019-01-10 13:19:48 +0000
committerAaron Ballman <aaron@aaronballman.com>2019-01-10 13:19:48 +0000
commit2c49462725a0573b431cf58996f40ddb36b93c3b (patch)
treedb0afc59768294e734377fb26472975c443e7087 /clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
parent941dacc360cd31efe8bba0fb5095896a0b7a6d25 (diff)
downloadbcm5719-llvm-2c49462725a0573b431cf58996f40ddb36b93c3b.tar.gz
bcm5719-llvm-2c49462725a0573b431cf58996f40ddb36b93c3b.zip
Correct the spelling of helpURI to helpUri.
JSON is case sensitive and the SARIF spec uses the corrected spelling. llvm-svn: 350817
Diffstat (limited to 'clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp')
-rw-r--r--clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp b/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
index 9e9690ca0b3..fecbc000107 100644
--- a/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
+++ b/clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp
@@ -285,7 +285,7 @@ static json::Object createRule(const PathDiagnostic &Diag) {
std::string RuleURI = getRuleHelpURIStr(CheckName);
if (!RuleURI.empty())
- Ret["helpURI"] = RuleURI;
+ Ret["helpUri"] = RuleURI;
return Ret;
}
OpenPOWER on IntegriCloud