From a62f200b524491b8e55c194f05f925ceeb5a6d0f Mon Sep 17 00:00:00 2001 From: Koichi Shiraishi Date: Wed, 5 Jun 2019 08:40:08 +0900 Subject: [PATCH] all: fix LICENSE header and split package top level synopsis to doc.go --- doc.go | 6 ++++++ uri.go | 3 +-- uri_test.go | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 doc.go 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.