aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/d/hello_lib/native-greeter.c2
-rw-r--r--examples/d/hello_lib/native-greeter.h2
-rw-r--r--examples/j2objc/BUILD2
-rw-r--r--examples/j2objc/J2ObjcExample/AppDelegate.h2
-rw-r--r--examples/j2objc/J2ObjcExample/AppDelegate.m2
-rw-r--r--examples/j2objc/J2ObjcExample/GreeterViewController.h2
-rw-r--r--examples/j2objc/J2ObjcExample/GreeterViewController.m2
-rw-r--r--examples/j2objc/J2ObjcExample/J2ObjcExample-Info.plist2
-rw-r--r--examples/j2objc/J2ObjcExample/main.m2
-rw-r--r--examples/j2objc/src/main/java/com/example/myproject/SimpleGreeter.java2
-rw-r--r--examples/j2objc/src/main/java/com/example/myproject/package-info.java2
-rw-r--r--examples/jsonnet/intersection.jsonnet2
-rw-r--r--examples/jsonnet/shell-workflows.jsonnet2
-rw-r--r--examples/jsonnet/wordcount.jsonnet2
-rw-r--r--examples/jsonnet/workflow.jsonnet2
-rw-r--r--examples/objc/BUILD2
-rw-r--r--examples/objc/PrenotCalculator/AppDelegate.h2
-rw-r--r--examples/objc/PrenotCalculator/AppDelegate.m2
-rw-r--r--examples/objc/PrenotCalculator/CalculatedValues.h2
-rw-r--r--examples/objc/PrenotCalculator/CalculatedValues.m2
-rw-r--r--examples/objc/PrenotCalculator/CalculatorViewController.h2
-rw-r--r--examples/objc/PrenotCalculator/CalculatorViewController.m2
-rw-r--r--examples/objc/PrenotCalculator/CalculatorViewController.xib2
-rw-r--r--examples/objc/PrenotCalculator/CoreData.h2
-rw-r--r--examples/objc/PrenotCalculator/CoreData.m2
-rw-r--r--examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents2
-rw-r--r--examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents2
-rw-r--r--examples/objc/PrenotCalculator/Equation.h2
-rw-r--r--examples/objc/PrenotCalculator/Equation.m2
-rw-r--r--examples/objc/PrenotCalculator/Expression.h2
-rw-r--r--examples/objc/PrenotCalculator/Expression.m2
-rw-r--r--examples/objc/PrenotCalculator/Literal.h2
-rw-r--r--examples/objc/PrenotCalculator/Literal.m2
-rw-r--r--examples/objc/PrenotCalculator/PrenotCalculator-Info.plist2
-rw-r--r--examples/objc/PrenotCalculator/ValuesViewController.h2
-rw-r--r--examples/objc/PrenotCalculator/ValuesViewController.m2
-rw-r--r--examples/objc/PrenotCalculator/main.m2
-rw-r--r--examples/rust/hello_lib/src/greeter.rs2
-rw-r--r--examples/rust/hello_lib/src/lib.rs2
-rw-r--r--examples/rust/hello_lib/tests/greeting.rs2
-rw-r--r--examples/rust/hello_world/src/main.rs2
41 files changed, 41 insertions, 41 deletions
diff --git a/examples/d/hello_lib/native-greeter.c b/examples/d/hello_lib/native-greeter.c
index cdbb388e32..1ce489a941 100644
--- a/examples/d/hello_lib/native-greeter.c
+++ b/examples/d/hello_lib/native-greeter.c
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/d/hello_lib/native-greeter.h b/examples/d/hello_lib/native-greeter.h
index d01d8cae8b..c998412c74 100644
--- a/examples/d/hello_lib/native-greeter.h
+++ b/examples/d/hello_lib/native-greeter.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/j2objc/BUILD b/examples/j2objc/BUILD
index 1507be426c..41c7bb740a 100644
--- a/examples/j2objc/BUILD
+++ b/examples/j2objc/BUILD
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All rights reserved.
+# Copyright 2015 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/examples/j2objc/J2ObjcExample/AppDelegate.h b/examples/j2objc/J2ObjcExample/AppDelegate.h
index 4132daaf55..c76c8fc0bb 100644
--- a/examples/j2objc/J2ObjcExample/AppDelegate.h
+++ b/examples/j2objc/J2ObjcExample/AppDelegate.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/j2objc/J2ObjcExample/AppDelegate.m b/examples/j2objc/J2ObjcExample/AppDelegate.m
index 8339e62ab0..b9deabd3bd 100644
--- a/examples/j2objc/J2ObjcExample/AppDelegate.m
+++ b/examples/j2objc/J2ObjcExample/AppDelegate.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/j2objc/J2ObjcExample/GreeterViewController.h b/examples/j2objc/J2ObjcExample/GreeterViewController.h
index bf5f9971a2..bfe0d01ad3 100644
--- a/examples/j2objc/J2ObjcExample/GreeterViewController.h
+++ b/examples/j2objc/J2ObjcExample/GreeterViewController.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/j2objc/J2ObjcExample/GreeterViewController.m b/examples/j2objc/J2ObjcExample/GreeterViewController.m
index 51838658b3..34378531a2 100644
--- a/examples/j2objc/J2ObjcExample/GreeterViewController.m
+++ b/examples/j2objc/J2ObjcExample/GreeterViewController.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/j2objc/J2ObjcExample/J2ObjcExample-Info.plist b/examples/j2objc/J2ObjcExample/J2ObjcExample-Info.plist
index 8b695fabd5..305388133c 100644
--- a/examples/j2objc/J2ObjcExample/J2ObjcExample-Info.plist
+++ b/examples/j2objc/J2ObjcExample/J2ObjcExample-Info.plist
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright 2015 Google Inc. All rights reserved.
+ Copyright 2015 The Bazel Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/examples/j2objc/J2ObjcExample/main.m b/examples/j2objc/J2ObjcExample/main.m
index d70550a730..9c7f114bdb 100644
--- a/examples/j2objc/J2ObjcExample/main.m
+++ b/examples/j2objc/J2ObjcExample/main.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/j2objc/src/main/java/com/example/myproject/SimpleGreeter.java b/examples/j2objc/src/main/java/com/example/myproject/SimpleGreeter.java
index 22fa46403c..e9f4fc1628 100644
--- a/examples/j2objc/src/main/java/com/example/myproject/SimpleGreeter.java
+++ b/examples/j2objc/src/main/java/com/example/myproject/SimpleGreeter.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/j2objc/src/main/java/com/example/myproject/package-info.java b/examples/j2objc/src/main/java/com/example/myproject/package-info.java
index 6bacf4949b..7a7bcc9cb2 100644
--- a/examples/j2objc/src/main/java/com/example/myproject/package-info.java
+++ b/examples/j2objc/src/main/java/com/example/myproject/package-info.java
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/jsonnet/intersection.jsonnet b/examples/jsonnet/intersection.jsonnet
index e0f2fd1224..17aa6a36ba 100644
--- a/examples/jsonnet/intersection.jsonnet
+++ b/examples/jsonnet/intersection.jsonnet
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/jsonnet/shell-workflows.jsonnet b/examples/jsonnet/shell-workflows.jsonnet
index d5e36a07ec..bcf44c76ec 100644
--- a/examples/jsonnet/shell-workflows.jsonnet
+++ b/examples/jsonnet/shell-workflows.jsonnet
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/jsonnet/wordcount.jsonnet b/examples/jsonnet/wordcount.jsonnet
index e816d446b4..f1dfe2bfef 100644
--- a/examples/jsonnet/wordcount.jsonnet
+++ b/examples/jsonnet/wordcount.jsonnet
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/jsonnet/workflow.jsonnet b/examples/jsonnet/workflow.jsonnet
index bca2bd7e16..a093a0ec38 100644
--- a/examples/jsonnet/workflow.jsonnet
+++ b/examples/jsonnet/workflow.jsonnet
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/BUILD b/examples/objc/BUILD
index 61e704b61a..3aeee3918f 100644
--- a/examples/objc/BUILD
+++ b/examples/objc/BUILD
@@ -1,4 +1,4 @@
-# Copyright 2015 Google Inc. All rights reserved.
+# Copyright 2015 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/AppDelegate.h b/examples/objc/PrenotCalculator/AppDelegate.h
index 75b1f1da38..01b55df3d1 100644
--- a/examples/objc/PrenotCalculator/AppDelegate.h
+++ b/examples/objc/PrenotCalculator/AppDelegate.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/AppDelegate.m b/examples/objc/PrenotCalculator/AppDelegate.m
index f6ecc4d6c3..3e61f8bb72 100644
--- a/examples/objc/PrenotCalculator/AppDelegate.m
+++ b/examples/objc/PrenotCalculator/AppDelegate.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/CalculatedValues.h b/examples/objc/PrenotCalculator/CalculatedValues.h
index 026fadf6ca..2c29bef6c1 100644
--- a/examples/objc/PrenotCalculator/CalculatedValues.h
+++ b/examples/objc/PrenotCalculator/CalculatedValues.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/CalculatedValues.m b/examples/objc/PrenotCalculator/CalculatedValues.m
index 2e401cb1c1..2ea8ed8ee2 100644
--- a/examples/objc/PrenotCalculator/CalculatedValues.m
+++ b/examples/objc/PrenotCalculator/CalculatedValues.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/CalculatorViewController.h b/examples/objc/PrenotCalculator/CalculatorViewController.h
index 60dbc83bb8..6b53d7d60d 100644
--- a/examples/objc/PrenotCalculator/CalculatorViewController.h
+++ b/examples/objc/PrenotCalculator/CalculatorViewController.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/CalculatorViewController.m b/examples/objc/PrenotCalculator/CalculatorViewController.m
index 5d26fefcc0..6e755a9ad5 100644
--- a/examples/objc/PrenotCalculator/CalculatorViewController.m
+++ b/examples/objc/PrenotCalculator/CalculatorViewController.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/CalculatorViewController.xib b/examples/objc/PrenotCalculator/CalculatorViewController.xib
index 7ed3f42c60..f93dd821f7 100644
--- a/examples/objc/PrenotCalculator/CalculatorViewController.xib
+++ b/examples/objc/PrenotCalculator/CalculatorViewController.xib
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
- Copyright 2015 Google Inc. All rights reserved.
+ Copyright 2015 The Bazel Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/CoreData.h b/examples/objc/PrenotCalculator/CoreData.h
index 2b55bb1404..1f29db1a23 100644
--- a/examples/objc/PrenotCalculator/CoreData.h
+++ b/examples/objc/PrenotCalculator/CoreData.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/CoreData.m b/examples/objc/PrenotCalculator/CoreData.m
index 43a1e89122..b3ba6049a3 100644
--- a/examples/objc/PrenotCalculator/CoreData.m
+++ b/examples/objc/PrenotCalculator/CoreData.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents b/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents
index 1cd3e57dae..05b9a8b8db 100644
--- a/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents
+++ b/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.0.xcdatamodel/contents
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
- Copyright 2015 Google Inc. All rights reserved.
+ Copyright 2015 The Bazel Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents b/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents
index 80b28dd35a..02a74ec948 100644
--- a/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents
+++ b/examples/objc/PrenotCalculator/DataModel.xcdatamodeld/DataModel-1.1.xcdatamodel/contents
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
- Copyright 2015 Google Inc. All rights reserved.
+ Copyright 2015 The Bazel Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/Equation.h b/examples/objc/PrenotCalculator/Equation.h
index c04fc705e4..d6192ea0b7 100644
--- a/examples/objc/PrenotCalculator/Equation.h
+++ b/examples/objc/PrenotCalculator/Equation.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/Equation.m b/examples/objc/PrenotCalculator/Equation.m
index 4894e82b93..2bf8f5f67c 100644
--- a/examples/objc/PrenotCalculator/Equation.m
+++ b/examples/objc/PrenotCalculator/Equation.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/Expression.h b/examples/objc/PrenotCalculator/Expression.h
index f5b2dcf63e..ab6be2742e 100644
--- a/examples/objc/PrenotCalculator/Expression.h
+++ b/examples/objc/PrenotCalculator/Expression.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/Expression.m b/examples/objc/PrenotCalculator/Expression.m
index 68e954170c..5a304d791d 100644
--- a/examples/objc/PrenotCalculator/Expression.m
+++ b/examples/objc/PrenotCalculator/Expression.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/Literal.h b/examples/objc/PrenotCalculator/Literal.h
index 62ee13c466..fab3369b55 100644
--- a/examples/objc/PrenotCalculator/Literal.h
+++ b/examples/objc/PrenotCalculator/Literal.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/Literal.m b/examples/objc/PrenotCalculator/Literal.m
index c103f46510..d3c8ed7802 100644
--- a/examples/objc/PrenotCalculator/Literal.m
+++ b/examples/objc/PrenotCalculator/Literal.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/PrenotCalculator-Info.plist b/examples/objc/PrenotCalculator/PrenotCalculator-Info.plist
index 178f34c4c0..71f8c75bd4 100644
--- a/examples/objc/PrenotCalculator/PrenotCalculator-Info.plist
+++ b/examples/objc/PrenotCalculator/PrenotCalculator-Info.plist
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
- Copyright 2015 Google Inc. All rights reserved.
+ Copyright 2015 The Bazel Authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/ValuesViewController.h b/examples/objc/PrenotCalculator/ValuesViewController.h
index 27055b905f..4034f89c7a 100644
--- a/examples/objc/PrenotCalculator/ValuesViewController.h
+++ b/examples/objc/PrenotCalculator/ValuesViewController.h
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/ValuesViewController.m b/examples/objc/PrenotCalculator/ValuesViewController.m
index 333ea11b1f..c6c9499c3f 100644
--- a/examples/objc/PrenotCalculator/ValuesViewController.m
+++ b/examples/objc/PrenotCalculator/ValuesViewController.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/objc/PrenotCalculator/main.m b/examples/objc/PrenotCalculator/main.m
index d70550a730..9c7f114bdb 100644
--- a/examples/objc/PrenotCalculator/main.m
+++ b/examples/objc/PrenotCalculator/main.m
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/rust/hello_lib/src/greeter.rs b/examples/rust/hello_lib/src/greeter.rs
index 2a4a2f1d3f..2a7d7153b9 100644
--- a/examples/rust/hello_lib/src/greeter.rs
+++ b/examples/rust/hello_lib/src/greeter.rs
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/rust/hello_lib/src/lib.rs b/examples/rust/hello_lib/src/lib.rs
index 8f2b5a11f5..9dc608911f 100644
--- a/examples/rust/hello_lib/src/lib.rs
+++ b/examples/rust/hello_lib/src/lib.rs
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/rust/hello_lib/tests/greeting.rs b/examples/rust/hello_lib/tests/greeting.rs
index 842ba2983b..be3435681b 100644
--- a/examples/rust/hello_lib/tests/greeting.rs
+++ b/examples/rust/hello_lib/tests/greeting.rs
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
diff --git a/examples/rust/hello_world/src/main.rs b/examples/rust/hello_world/src/main.rs
index 2e837ce0bb..03cf43fcfe 100644
--- a/examples/rust/hello_world/src/main.rs
+++ b/examples/rust/hello_world/src/main.rs
@@ -1,4 +1,4 @@
-// Copyright 2015 Google Inc. All rights reserved.
+// Copyright 2015 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.