Update packages/core/repl/native-functions/methods-repl-fn.ts

This commit is contained in:
Kamil Mysliwiec
2022-06-01 11:54:07 +02:00
committed by GitHub
parent 89b39f946a
commit 160b521ef7

View File

@@ -7,7 +7,7 @@ import type { ReplFnDefinition } from '../repl.interfaces';
export class MethodsReplFn extends ReplFunction {
public fnDefinition: ReplFnDefinition = {
name: 'methods',
description: 'Display all public methods available on a given provider.',
description: 'Display all public methods available on a given provider or controller.',
signature: '(token: ClassRef | string) => void',
};