aboutsummaryrefslogtreecommitdiff
path: root/pw_span
diff options
context:
space:
mode:
authorWyatt Hepler <hepler@google.com>2019-11-26 14:13:38 -0800
committerWyatt Hepler <hepler@google.com>2019-11-27 22:34:02 +0000
commit1a96094ce6241f6063967472742235b962d66d3d (patch)
treea0e7a9cb357ba7a4c6ab403fb127a5eae0e100b9 /pw_span
parent5b6fa2aa0565c01f619d66a7b251312ce42b890c (diff)
downloadpigweed-1a96094ce6241f6063967472742235b962d66d3d.tar.gz
Fix copyright notices
- Add missing copright header in conf.py. - Fix inconsistent copyright notice line breaking. Change-Id: Ib78f7768643069c49ff986a48a176df9fd06e891
Diffstat (limited to 'pw_span')
-rw-r--r--pw_span/public/pw_span/span.h8
-rw-r--r--pw_span/span_test.cc8
2 files changed, 8 insertions, 8 deletions
diff --git a/pw_span/public/pw_span/span.h b/pw_span/public/pw_span/span.h
index 423fd7449..bcc8a5da1 100644
--- a/pw_span/public/pw_span/span.h
+++ b/pw_span/public/pw_span/span.h
@@ -1,16 +1,16 @@
// Copyright 2019 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
-// use this file except in compliance with the License. You may obtain a copy
-// of the License at
+// use this file except in compliance with the License. You may obtain a copy of
+// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-// License for the specific language governing permissions and limitations
-// under the License.
+// License for the specific language governing permissions and limitations under
+// the License.
// pw::span is a stand-in for C++20's std::span.
//
diff --git a/pw_span/span_test.cc b/pw_span/span_test.cc
index b9c70ec49..bf973fac4 100644
--- a/pw_span/span_test.cc
+++ b/pw_span/span_test.cc
@@ -1,16 +1,16 @@
// Copyright 2019 The Pigweed Authors
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not
-// use this file except in compliance with the License. You may obtain a copy
-// of the License at
+// use this file except in compliance with the License. You may obtain a copy of
+// the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-// License for the specific language governing permissions and limitations
-// under the License.
+// License for the specific language governing permissions and limitations under
+// the License.
// This is the base::span unit test from Chromium, with small modifications.
// Modifications are noted with "Pigweed:" comments.