QL HB: Reword description

Co-Authored-By: James Fletcher <42464962+jf205@users.noreply.github.com>
This commit is contained in:
shati-patel
2020-01-02 14:41:58 +00:00
committed by GitHub
parent 94d55e90b0
commit f38ae3c677

View File

@@ -275,7 +275,7 @@ be bound, is different from ``bindingset[x, y]``, which states that both ``x`` a
bound.
The latter can be useful when you want to declare a :ref:`predicate with result <predicates-with-result>` that takes multiple input arguments.
For example, the following predicate gets ``str``, truncated to a maximum length of ``len`` characters::
For example, the following predicate takes a string ``str`` and truncates it to a maximum length of ``len`` characters::
bindingset[str, len]
string truncate(string str, int len) {