Fix a couple small typos
This commit is contained in:
parent
798ffb9cbb
commit
ba69a564f2
@ -62,7 +62,7 @@ func (bc *BarChart) layout() {
|
||||
}
|
||||
|
||||
//bc.max = bc.Data[0] // what if Data is nil? Sometimes when bar graph is nill it produces panic with panic: runtime error: index out of range
|
||||
// Asign a negative value to get maxvalue auto-populates
|
||||
// Assign a negative value to get maxvalue auto-populates
|
||||
if bc.max == 0 {
|
||||
bc.max = -1
|
||||
}
|
||||
|
@ -100,7 +100,7 @@ func charWidth(ch rune) int {
|
||||
|
||||
var whiteSpaceRegex = regexp.MustCompile(`\s`)
|
||||
|
||||
// StringToAttribute converts text to a termui attribute. You may specifiy more
|
||||
// StringToAttribute converts text to a termui attribute. You may specify more
|
||||
// then one attribute like that: "BLACK, BOLD, ...". All whitespaces
|
||||
// are ignored.
|
||||
func StringToAttribute(text string) Attribute {
|
||||
|
Loading…
Reference in New Issue
Block a user