Skip to content

Commit

Permalink
Fix usage typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hacker1024 committed Sep 14, 2020
1 parent d555ffa commit fd24d28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ coretemp

* `-C` Output temperature in Celsius (default).
* `-F` Output temperature in Fahrenheit.
* `-c <num>` Specify which cores to report on, in a comma-separated list. If unspecified, report all temperatures.
* `-c <num>` Specify which cores to report on, in a comma-separated list. If unspecified, reports all temperatures.
* `-r <num>` The accuracy of the temperature, in the number of decimal places. Defaults to 0.

## Maintainer
Expand Down
2 changes: 1 addition & 1 deletion smc.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ int main(int argc, char* argv[])
printf("Options:\n");
printf(" -F Display temperatures in degrees Fahrenheit.\n");
printf(" -C Display temperatures in degrees Celsius (Default).\n");
printf(" -c <num> Specify which cores to report on, in a comma-separated list. If unspecified, report all temperatures.\n");
printf(" -c <num> Specify which cores to report on, in a comma-separated list. If unspecified, reports all temperatures.\n");
printf(" -r <num> The accuracy of the temperature, in the number of decimal places. Defaults to 0.\n");
printf(" -h Display this help.\n");
return -1;
Expand Down

0 comments on commit fd24d28

Please sign in to comment.