Skip to content

Commit

Permalink
pr: docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
Travis Raines committed Nov 24, 2021
1 parent ebf05f8 commit 132546d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion file/reader.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,10 @@ import (
)

var (
// ErrorTransformFalseNotSupported indicates that no transform mode is not supported
ErrorTransformFalseNotSupported = fmt.Errorf("_transform: false is not supported")
ErrorFilenameEmpty = fmt.Errorf("filename cannot be empty")
// ErrorFilenameEmpty indicates that you must provide a filename
ErrorFilenameEmpty = fmt.Errorf("filename cannot be empty")
)

// RenderConfig contains necessary information to render a correct
Expand Down

0 comments on commit 132546d

Please sign in to comment.