fix(cmd/humidity,pressure,temperature): short informations

This commit is contained in:
2019-07-02 22:54:58 +02:00
parent 9feee62c35
commit 440d543a83
10 changed files with 10 additions and 10 deletions

View File

@ -16,7 +16,7 @@ import (
var listTemperatureCmd = &cobra.Command{
Use: "list",
Short: "print temperatures",
Short: "List temperature values from different or specified sensors by arguments",
Example: fmt.Sprintf("flucky temperature logs"),
Run: func(cmd *cobra.Command, args []string) {

View File

@ -20,7 +20,7 @@ var logs bool
var readTemperatureCmd = &cobra.Command{
Use: "read",
Short: "read temperature from sensor",
Short: "Reading temperature values from different or specified sensors by arguments",
Example: fmt.Sprintf("flucky temperature read\nflucky temperature read outdoor"),
Run: func(cmd *cobra.Command, args []string) {

View File

@ -12,7 +12,7 @@ var round float64
var temperatureCmd = &cobra.Command{
Use: "temperature",
Short: "Operate with temperature messures",
Short: "Operates with temperature values",
Example: fmt.Sprintf("flucky temperature read\nflucky temperature read outdoor"),
}