From 548ff47f03e4441c3754d97531a1b642935fe129 Mon Sep 17 00:00:00 2001 From: Jami Cogswell Date: Mon, 28 Nov 2022 11:18:29 -0500 Subject: [PATCH] fix typo in QLDoc --- java/ql/lib/semmle/code/java/security/InsufficientKeySize.qll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/ql/lib/semmle/code/java/security/InsufficientKeySize.qll b/java/ql/lib/semmle/code/java/security/InsufficientKeySize.qll index 3c811db1f34..e559437307f 100644 --- a/java/ql/lib/semmle/code/java/security/InsufficientKeySize.qll +++ b/java/ql/lib/semmle/code/java/security/InsufficientKeySize.qll @@ -20,7 +20,7 @@ abstract class InsufficientKeySizeSink extends DataFlow::Node { private module Asymmetric { /** Provides models for non-elliptic-curve asymmetric cryptography. */ private module NonEllipticCurve { - /** A source for an insufficient key size used in an RSA, DSA, and DH algorithms. */ + /** A source for an insufficient key size used in RSA, DSA, and DH algorithms. */ private class Source extends InsufficientKeySizeSource { string algoName; @@ -31,7 +31,7 @@ private module Asymmetric { } } - /** A sink for an insufficient key size used in an RSA, DSA, and DH algorithms. */ + /** A sink for an insufficient key size used in RSA, DSA, and DH algorithms. */ private class Sink extends InsufficientKeySizeSink { string algoName;