From d82153017d599e89d6d2aeeeb4ca0022ea6f8382 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Wed, 26 Jul 2017 17:19:24 -0700 Subject: [PATCH] Remove inaccurate (misattributed) copyright notices 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. --- LICENSE-MIT | 2 -- src/cargo/util/lev_distance.rs | 10 ---------- 2 files changed, 12 deletions(-) diff --git a/LICENSE-MIT b/LICENSE-MIT index 39d4bdb5a..31aa79387 100644 --- a/LICENSE-MIT +++ b/LICENSE-MIT @@ -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 diff --git a/src/cargo/util/lev_distance.rs b/src/cargo/util/lev_distance.rs index 4ae55a9eb..d55a3443a 100644 --- a/src/cargo/util/lev_distance.rs +++ b/src/cargo/util/lev_distance.rs @@ -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 or the MIT license -// , 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 {