Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Fix typo #5639

Merged
merged 1 commit into from
Sep 13, 2018
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
2 changes: 1 addition & 1 deletion programs/cleos/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2002,7 +2002,7 @@ int main( int argc, char** argv ) {
getTable->add_option( "-l,--limit", limit, localized("The maximum number of rows to return") );
getTable->add_option( "-k,--key", table_key, localized("Deprecated") );
getTable->add_option( "-L,--lower", lower, localized("JSON representation of lower bound value of key, defaults to first") );
getTable->add_option( "-U,--upper", upper, localized("JSON representation of upper bound value value of key, defaults to last") );
getTable->add_option( "-U,--upper", upper, localized("JSON representation of upper bound value of key, defaults to last") );
getTable->add_option( "--index", index_position,
localized("Index number, 1 - primary (first), 2 - secondary index (in order defined by multi_index), 3 - third index, etc.\n"
"\t\t\t\tNumber or name of index can be specified, e.g. 'secondary' or '2'."));
Expand Down