Skip to content

Commit

Permalink
Satisfy linter
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonpaulos committed May 9, 2024
1 parent b97ac1c commit 2be9f0d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
3 changes: 1 addition & 2 deletions abi/doc.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ Package abi provides an implementation of the Algorand ARC-4 ABI type system.
See https://arc.algorand.foundation/ARCs/arc-0004 for the corresponding specification.
Basic Operations
# Basic Operations
This package can parse ABI type names using the `abi.TypeOf()` function.
Expand Down
1 change: 1 addition & 0 deletions abi/type.go
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ type segment struct{ left, right int }
// Each sub-string represents a content type of the tuple type.
// The argument str is the content between parentheses of tuple, i.e.
// (...... str ......)
//
// ^ ^
func parseTupleContent(str string) ([]string, error) {
// if the tuple type content is empty (which is also allowed)
Expand Down
4 changes: 4 additions & 0 deletions address/address.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
/*
Package address provides the ability to convert between 32 byte Algorand addresses and their base32
string form.
*/
package address

import (
Expand Down
3 changes: 3 additions & 0 deletions apps/box.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/*
Package apps provides parsing utilities related to application arguments and box keys.
*/
package apps

import (
Expand Down

0 comments on commit 2be9f0d

Please sign in to comment.