about summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2018-08-18 12:54:42 -0700
committerWho? Me?! <mark-i-m@users.noreply.github.com>2018-08-20 11:08:22 -0500
commit1e4bf1dd58f4e9a771b99bfb89182ff1696e0740 (patch)
treece6d7c8de0f12697eee538e42853f95cf2757f62 /src/doc/rustc-dev-guide
parent955d0f913d09e1c4d656b43dcb0366f65cc96357 (diff)
downloadrust-1e4bf1dd58f4e9a771b99bfb89182ff1696e0740.tar.gz
rust-1e4bf1dd58f4e9a771b99bfb89182ff1696e0740.zip
Update copyright guidance to omit notices for new files.
Previously approved in https://github.com/rust-lang/rust/pull/43498 ;
update the guide to match.
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/compiletest.md10
-rw-r--r--src/doc/rustc-dev-guide/src/conventions.md23
-rw-r--r--src/doc/rustc-dev-guide/src/tests/adding.md4
3 files changed, 5 insertions, 32 deletions
diff --git a/src/doc/rustc-dev-guide/src/compiletest.md b/src/doc/rustc-dev-guide/src/compiletest.md
index 0837fb81935..40d06136eb1 100644
--- a/src/doc/rustc-dev-guide/src/compiletest.md
+++ b/src/doc/rustc-dev-guide/src/compiletest.md
@@ -63,16 +63,6 @@ header command and the argument list (if present) are typically separated by a
 colon:
 
 ```rust,ignore
-// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 // must-compile-successfully
 // failure-status: 1
 
diff --git a/src/doc/rustc-dev-guide/src/conventions.md b/src/doc/rustc-dev-guide/src/conventions.md
index 3f30dac73d4..93c5c44be79 100644
--- a/src/doc/rustc-dev-guide/src/conventions.md
+++ b/src/doc/rustc-dev-guide/src/conventions.md
@@ -20,24 +20,11 @@ in isolation with `./x.py test src/tools/tidy`.
 
 ### Copyright notice
 
-All files must begin with the following copyright notice:
-
-```rust
-// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-```
-
-The year at the top is not meaningful: copyright protections are in
-fact automatic from the moment of authorship. We do not typically edit
-the years on existing files. When creating a new file, you can use the
-current year if you like, but you don't have to.
+Some existing files begin with a copyright and license notice. Please omit this
+notice for new files licensed under the standard terms (dual MIT/Apache-2.0).
+For existing files, the year at the top is not meaningful: copyright
+protections are in fact automatic from the moment of authorship. We do not
+typically edit the years on existing files.
 
 ## Line length
 
diff --git a/src/doc/rustc-dev-guide/src/tests/adding.md b/src/doc/rustc-dev-guide/src/tests/adding.md
index 7469755f71c..ee264747a8d 100644
--- a/src/doc/rustc-dev-guide/src/tests/adding.md
+++ b/src/doc/rustc-dev-guide/src/tests/adding.md
@@ -101,10 +101,6 @@ this test. For example, this test uses the `// compile-flags` command
 to specify a custom flag to give to rustc when the test is compiled:
 
 ```rust,ignore
-// Copyright 2017 The Rust Project Developers. blah blah blah.
-// ...
-// except according to those terms.
-
 // Test the behavior of `0 - 1` when overflow checks are disabled.
 
 // compile-flags: -Coverflow-checks=off