fixed OrderingTerm.random docblock

This commit is contained in:
Souf G 2023-08-03 18:36:07 +09:00 committed by GitHub
parent d276c89d6d
commit 3d31cb9c6d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ class OrderingTerm extends Component {
);
}
/// Creates an ordering term to get a number of random rows
/// Creates an ordering term that sorts rows in a random order
/// using sqlite random function.
factory OrderingTerm.random() {
return OrderingTerm(expression: const FunctionCallExpression('random', []));