Minor tweaks to QLDocs

This commit is contained in:
Owen Mansel-Chan
2026-01-09 09:38:10 +00:00
committed by GitHub
parent 766e908c79
commit 8c9318b1a0
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ private class DefaultIntentRedirectionSink extends IntentRedirectionSink {
DefaultIntentRedirectionSink() { sinkNode(this, "intent-redirection") }
}
/** External sanitizers for Intent redirection vulnerabilities. */
/** An external sanitizer for Intent redirection vulnerabilities. */
private class ExternalIntentRedirectionSanitizer extends IntentRedirectionSanitizer {
ExternalIntentRedirectionSanitizer() { barrierNode(this, "intent-redirection") }
}

View File

@@ -50,7 +50,7 @@ private class DefaultFragmentInjectionSink extends FragmentInjectionSink {
}
/**
* A barrier for Fragment injection vulnerabilities.
* A sanitizer for Fragment injection vulnerabilities.
*/
abstract class FragmentInjectionSanitizer extends DataFlow::Node { }