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

Fixed typo in rbuscli.c help messages #185

Merged
merged 2 commits into from
Jan 9, 2024
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
6 changes: 3 additions & 3 deletions utils/rbuscli/rbuscli.c
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ void show_menu(const char* command)
printf ("\t%-20sName of a method\n\r", "methodname");
printf ("\t%-20sName of a parameter\n\r", "parameter");
printf ("Examples:\n\r");
printf ("\tGetPSMRecordValue() Deveice.Test.Psm\n\r");
printf ("\tGetPSMRecordValue() Device.Test.Psm\n\r");
printf ("\n\r");
}
else if(matchCmd(command, 9, "method_values"))
Expand All @@ -417,7 +417,7 @@ void show_menu(const char* command)
printf ("\t%-20sType of the parameter\n\r", "type");
printf ("\t%-20sValue to be stored in the parameter\n\r", "value");
printf ("Examples:\n\r");
printf ("\tSetPSMRecordValue() Deveice.Test.Psm string test_value\n\r");
printf ("\tSetPSMRecordValue() Device.Test.Psm string test_value\n\r");
printf ("\n\r");
}
else if(matchCmd(command, 10, "create_session"))
Expand Down Expand Up @@ -3023,7 +3023,7 @@ int main( int argc, char *argv[] )
rbus_close(g_busHandle);
g_busHandle = 0;
}

if (g_registeredProps)
{
runSteps = __LINE__;
Expand Down
Loading