Skip to content

Commit ebc3eaf

Browse files
author
Dean Karn
committed
Change Suffix
Not thinking that ioutil already existed 🤦 changes suffix to be `ext` so ioutil => ioext.
1 parent c2b526c commit ebc3eaf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# pkg
2-
![Project status](https://img.shields.io/badge/version-1.0.0-green.svg)
2+
![Project status](https://img.shields.io/badge/version-2.0.0-green.svg)
33
[![Build Status](https://travis-ci.org/go-playground/pkg.svg?branch=master)](https://travis-ci.org/go-playground/pkg)
44
[![Coverage Status](https://coveralls.io/repos/github/go-playground/pkg/badge.svg?branch=master)](https://coveralls.io/github/go-playground/pkg?branch=master)
55
[![GoDoc](https://godoc.org/github.com/go-playground/pkg?status.svg)](https://godoc.org/github.com/go-playground/pkg)
66
![License](https://img.shields.io/dub/l/vibe-d.svg)
77

8-
pkg extends the core go packages with missing or additional functionality built in. All packages correspond to the std go package name with an additional suffix of `util` to avoid naming conflicts.
8+
pkg extends the core go packages with missing or additional functionality built in. All packages correspond to the std go package name with an additional suffix of `ext` to avoid naming conflicts.
99

1010
Motivation
1111
----------

io/limit_reader.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package ioutil
1+
package ioext
22

33
import (
44
"errors"

io/limit_reader_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package ioutil
1+
package ioext
22

33
import (
44
"strings"

0 commit comments

Comments
 (0)