Skip to content

Commit

Permalink
Auto merge of #4331 - joshtriplett:fix-notices, r=matklad
Browse files Browse the repository at this point in the history
Remove inaccurate (misattributed) copyright notices

As discussed with @aturon, who took it to @rust-lang/core.

LICENSE-MIT and one source file contain inaccurate copyright notices of
the form "Copyright (c) (years) The Rust Project Developers", which
implies that an entity called "The Rust Project Developers" holds
copyrights in Rust. Rust contributors retain their copyrights, and do
not assign them to anyone by contributing.  Remove the inaccurate
notices.
  • Loading branch information
bors committed Jul 27, 2017
2 parents 5c05eb8 + d821530 commit ddfdfbd
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
2 changes: 0 additions & 2 deletions LICENSE-MIT
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
Copyright (c) 2014 The Rust Project Developers

Permission is hereby granted, free of charge, to any
person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the
Expand Down
10 changes: 0 additions & 10 deletions src/cargo/util/lev_distance.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,3 @@
// Copyright 2012-2014 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.

use std::cmp;

pub fn lev_distance(me: &str, t: &str) -> usize {
Expand Down

0 comments on commit ddfdfbd

Please sign in to comment.