Skip to content

Commit

Permalink
file.go: fix typo in ListFiles example (FiloSottile#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
mpl authored and FiloSottile committed Oct 25, 2016
1 parent c32038d commit 0272537
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion file.go
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (b *Bucket) GetFileInfoByName(name string) (*FileInfo, error) {
// It works like sql.Rows: use Next to advance and then FileInfo.
// Check Err once Next returns false.
//
// l := b.ListFiles("", 50)
// l := b.ListFiles("")
// for l.Next() {
// fi := l.FileInfo()
// ...
Expand Down

0 comments on commit 0272537

Please sign in to comment.