From 3d7046e38c49feeb17ed1d7417e2387e4fa35f8a Mon Sep 17 00:00:00 2001 From: Max Schaefer Date: Tue, 7 Jan 2020 20:07:44 +0000 Subject: [PATCH] Apply suggestions from code review Co-Authored-By: Shati Patel --- ql/src/semmle/go/StringOps.qll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ql/src/semmle/go/StringOps.qll b/ql/src/semmle/go/StringOps.qll index 17b310a4210..437c5294f56 100644 --- a/ql/src/semmle/go/StringOps.qll +++ b/ql/src/semmle/go/StringOps.qll @@ -60,7 +60,7 @@ module StringConcatenation { module StringOps { /** - * A expression that is equivalent to `strings.HasPrefix(A, B)` or `!strings.HasPrefix(A, B)`. + * An expression that is equivalent to `strings.HasPrefix(A, B)` or `!strings.HasPrefix(A, B)`. * * Extends this class to refine existing API models. If you want to model new APIs, * extend `StringOps::HasPrefix::Range` instead. @@ -93,7 +93,7 @@ module StringOps { module HasPrefix { /** - * A expression that is equivalent to `strings.HasPrefix(A, B)` or `!strings.HasPrefix(A, B)`. + * An expression that is equivalent to `strings.HasPrefix(A, B)` or `!strings.HasPrefix(A, B)`. * * Extends this class to model new APIs. If you want to refine existing API models, extend * `StringOps::HasPrefix` instead.