update CmdContext's args field to options

This commit is contained in:
Andika Demas Riyandi 2021-02-03 17:45:57 +07:00
parent 6da1525c34
commit 2b34725508

View File

@ -280,7 +280,7 @@ pub struct CmdContext {
impl PartialEq for CmdContext {
fn eq(&self, other: &Self) -> bool {
self.command== other.command && self.args == other.args && self.metadata == other.metadata
self.command == other.command && self.options == other.options && self.metadata == other.metadata
}
}