diff --git a/doc.go b/doc.go new file mode 100644 index 0000000..3be05c2 --- /dev/null +++ b/doc.go @@ -0,0 +1,6 @@ +// Copyright 2019 The go-language-server Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// Package uri is an implementation of the URI Uniform Resource Identifier(RFC3986) specification for Go. +package uri diff --git a/uri.go b/uri.go index 47fab95..3dcc99c 100644 --- a/uri.go +++ b/uri.go @@ -1,8 +1,7 @@ -// Copyright 2019 The uri Authors. All rights reserved. +// Copyright 2019 The go-language-server Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -// Package uri implementation vscode-uri for Go. package uri import ( diff --git a/uri_test.go b/uri_test.go index da745e1..9c934a1 100644 --- a/uri_test.go +++ b/uri_test.go @@ -1,4 +1,4 @@ -// Copyright 2019 The uri Authors. All rights reserved. +// Copyright 2019 The go-language-server Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file.