Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing minor typos in CommandRegistrar JavaDocs #2326

Merged
merged 1 commit into from
Apr 9, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
/**
* {@link CommandRegistrar}s are the entry point for plugins wishing to provide
* their own command framework. The {@link CommandManager} will proxy calls to
* the correct registrar amd will handle the final {@link CommandResult}.
* the correct registrar and will handle the final {@link CommandResult}.
*
* <p>This interface defines a way to register commands. This registration
* method <strong>must</strong> call
Expand All @@ -55,7 +55,7 @@
* always supply the mapping of the command being invoked at runtime. The alias
* that was matched will also be supplied.</p>
*
* <p>For command that wishes to investigate the command string that was
* <p>For a command that wishes to investigate the command string that was
* executed, they may investigate the context in
* {@link CommandCause#cause()}, looking for the
* {@link EventContextKeys#COMMAND} context key.</p>
Expand Down