Skip to content

Commit

Permalink
comments
Browse files Browse the repository at this point in the history
  • Loading branch information
firefart committed Jan 4, 2021
1 parent cfcf619 commit 58bde84
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion gobusterdir/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ type Result struct {
Size int64
}

// ToString converts the Result to it's textual representation
// ResultToString converts the Result to it's textual representation
func (r Result) ResultToString() (string, error) {
buf := &bytes.Buffer{}

Expand Down
2 changes: 1 addition & 1 deletion gobusterdns/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ type Result struct {
CNAME string
}

// ToString converts the Result to it's textual representation
// ResultToString converts the Result to it's textual representation
func (r Result) ResultToString() (string, error) {
buf := &bytes.Buffer{}

Expand Down
2 changes: 1 addition & 1 deletion gobusterfuzz/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type Result struct {
Size int64
}

// ToString converts the Result to it's textual representation
// ResultToString converts the Result to it's textual representation
func (r Result) ResultToString() (string, error) {
buf := &bytes.Buffer{}

Expand Down
2 changes: 1 addition & 1 deletion gobusters3/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ type Result struct {
Status string
}

// ToString converts the Result to it's textual representation
// ResultToString converts the Result to it's textual representation
func (r Result) ResultToString() (string, error) {
buf := &bytes.Buffer{}

Expand Down
2 changes: 1 addition & 1 deletion gobustervhost/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type Result struct {
Header http.Header
}

// ToString converts the Result to it's textual representation
// ResultToString converts the Result to it's textual representation
func (r Result) ResultToString() (string, error) {
buf := &bytes.Buffer{}

Expand Down

0 comments on commit 58bde84

Please sign in to comment.