From e8f4127fe5616a430765b64b4fd80dd22d7f82a6 Mon Sep 17 00:00:00 2001 From: Nick Rolfe Date: Fri, 11 Jan 2019 13:56:52 +0000 Subject: [PATCH] C++: fix wording in GVN qldoc comment --- .../semmle/code/cpp/valuenumbering/GlobalValueNumbering.qll | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpp/ql/src/semmle/code/cpp/valuenumbering/GlobalValueNumbering.qll b/cpp/ql/src/semmle/code/cpp/valuenumbering/GlobalValueNumbering.qll index ffdca9150e4..d5eda48eb4b 100644 --- a/cpp/ql/src/semmle/code/cpp/valuenumbering/GlobalValueNumbering.qll +++ b/cpp/ql/src/semmle/code/cpp/valuenumbering/GlobalValueNumbering.qll @@ -3,8 +3,8 @@ * See https://en.wikipedia.org/wiki/Global_value_numbering * * The predicate `globalValueNumber` converts an expression into a `GVN`, - * which is an abstract type presenting the value of the expression. If - * two expressions have the `GVN` then they compute the same value. + * which is an abstract type representing the value of the expression. If + * two expressions have the same `GVN` then they compute the same value. * For example: * * ```