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

Update import statement to reference correct library name #40

Merged
merged 1 commit into from
May 4, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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