Skip to content

Commit

Permalink
update arrow.record comments
Browse files Browse the repository at this point in the history
  • Loading branch information
lquerel committed Oct 3, 2023
1 parent 093ab7f commit 76ec4ec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions pkg/arrow/record.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

package arrow

// This package contains functions for printing Arrow records to stdout.
// This is mostly used for debugging purposes.
// Package providing functions to print Arrow records to stdout for
// debugging and analysis.

import (
"fmt"
Expand All @@ -41,6 +41,8 @@ const (
CborCode int8 = 5
)

// TextColumn memorizes the contents of a column for printing.
// MaxLen is used to determine the column width.
type TextColumn struct {
Name string
MaxLen int
Expand Down

0 comments on commit 76ec4ec

Please sign in to comment.