Apply suggestions from code review

Co-authored-by: Dave Bartolomeo <dbartol@github.com>
This commit is contained in:
Robert Marsh
2020-06-25 08:54:17 -07:00
committed by GitHub
parent 362fbd12dc
commit b3072b9544
2 changed files with 2 additions and 2 deletions

View File

@@ -391,7 +391,7 @@ class ParametersNode extends PrintASTNode, TParametersNode {
override ASTNode getChild(int childIndex) { result.getAST() = func.getParameter(childIndex) }
/**
* Gets the function for which this node represents the parameters.
* Gets the `Function` for which this node represents the parameters.
*/
final Function getFunction() { result = func }
}

View File

@@ -10,7 +10,7 @@ newtype RelationStrictness =
*/
Strict() or
/**
* Represents that a relation is 'non-strict' (that is, a `<+` or `>+` relation)
* Represents that a relation is 'non-strict' (that is, a `<=` or `>=` relation)
*/
Nonstrict()