Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
Update import statement to reference correct library name (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
colinnewell committed May 4, 2020
1 parent c89cefb commit a994f4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ example a fuzz test for a the function `mypackage.MyFunc` that takes an int argu
// +build gofuzz
package mypackage

import "github.com/google/go-fuzz"
import fuzz "github.com/google/gofuzz"

func Fuzz(data []byte) int {
var i int
Expand Down
2 changes: 1 addition & 1 deletion fuzz.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func NewWithSeed(seed int64) *Fuzzer {
//
// // +build gofuzz
// package mypacakge
// import "github.com/google/go-fuzz"
// import fuzz "github.com/google/gofuzz"
// func Fuzz(data []byte) int {
// var i int
// fuzz.NewFromGoFuzz(data).Fuzz(&i)
Expand Down

0 comments on commit a994f4a

Please sign in to comment.