File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -346,7 +346,7 @@ type table struct {
346346}
347347
348348func (s HistorySize ) TableString (threshold Threshold , nameStyle NameStyle ) string {
349- contents := s .Contents ()
349+ contents := s .contents ()
350350 t := table {
351351 threshold : threshold ,
352352 nameStyle : nameStyle ,
@@ -423,14 +423,14 @@ func (t *table) formatRow(
423423}
424424
425425func (s HistorySize ) JSON (threshold Threshold , nameStyle NameStyle ) ([]byte , error ) {
426- contents := s .Contents ()
426+ contents := s .contents ()
427427 items := make (map [string ]* item )
428428 contents .CollectItems (items )
429429 j , err := json .MarshalIndent (items , "" , " " )
430430 return j , err
431431}
432432
433- func (s HistorySize ) Contents () tableContents {
433+ func (s HistorySize ) contents () tableContents {
434434 S := newSection
435435 I := newItem
436436 metric := counts .Metric
You can’t perform that action at this time.
0 commit comments