clean up some docs and code, including: (#479)

- typo fixes
- docstring format fixes
- unused variables fixes
- introducing first usages of testutil.ParseDocumentPaths function, which was previously unused
This commit is contained in:
Alex Ostrikov
2022-08-06 11:43:06 +02:00
committed by GitHub
parent 742593faa4
commit 46b3af6a31
7 changed files with 32 additions and 33 deletions

View File

@@ -108,11 +108,11 @@ func (e *NamedExpr) String() string {
type Function interface {
Expr
// Returns the list of parameters this function has received.
// Params returns the list of parameters this function has received.
Params() []Expr
}
// A Aggregator is an expression that aggregates documents into one result.
// An Aggregator is an expression that aggregates documents into one result.
type Aggregator interface {
Expr