diff --git a/README.md b/README.md index 1accde8..bea8a50 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ -# glhf [![GoDoc](https://godoc.org/github.com/gopxl/glfh?status.svg)](http://godoc.org/github.com/gopxl/glfh) [![Report card](https://goreportcard.com/badge/github.com/gopxl/glfh)](https://goreportcard.com/report/github.com/gopxl/glfh) +# glhf [![GoDoc](https://godoc.org/github.com/gopxl/glhf?status.svg)](http://godoc.org/github.com/gopxl/glhf) [![Report card](https://goreportcard.com/badge/github.com/gopxl/glhf)](https://goreportcard.com/report/github.com/gopxl/glhf) open**GL** **H**ave **F**un - A Go package that makes life with OpenGL enjoyable. ``` -go get github.com/gopxl/glfh +go get github.com/gopxl/glhf ``` ## Main features @@ -27,7 +27,7 @@ request_. ## Code -The following are parts of the demo program, which can be found in the [examples](https://github.com/gopxl/glfh/tree/master/examples/demo). +The following are parts of the demo program, which can be found in the [examples](https://github.com/gopxl/glhf/tree/master/examples/demo). ```go // ... GLFW window creation and stuff ... diff --git a/examples/demo/main.go b/examples/demo/main.go index 3fd0138..472a60a 100644 --- a/examples/demo/main.go +++ b/examples/demo/main.go @@ -6,9 +6,9 @@ import ( _ "image/png" "os" - "github.com/gopxl/glfh" - "github.com/gopxl/mainthread" "github.com/go-gl/glfw/v3.1/glfw" + "github.com/gopxl/glhf" + "github.com/gopxl/mainthread" ) func loadImage(path string) (*image.NRGBA, error) { diff --git a/go.mod b/go.mod index 6310c27..cfca824 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/gopxl/glfh +module github.com/gopxl/glhf go 1.21