diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2019-01-10 13:19:48 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2019-01-10 13:19:48 +0000 |
commit | 2c49462725a0573b431cf58996f40ddb36b93c3b (patch) | |
tree | db0afc59768294e734377fb26472975c443e7087 /clang/lib/StaticAnalyzer/Core/SarifDiagnostics.cpp | |
parent | 941dacc360cd31efe8bba0fb5095896a0b7a6d25 (diff) | |
download | bcm5719-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.cpp | 2 |
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; } |