rust_clippy -> clippy

This commit is contained in:
Manish Goregaokar 2014-12-26 05:30:03 +05:30
parent e57396bc52
commit a8aadc7376
5 changed files with 6 additions and 6 deletions

View File

@ -1,10 +1,10 @@
[package]
name = "rust-clippy"
name = "clippy"
version = "0.0.1"
authors = ["Manish Goregaokar <manishsmail@gmail.com>"]
[lib]
name = "rust_clippy"
name = "clippy"
crate_type = ["dylib"]

View File

@ -1,7 +1,7 @@
#![feature(phase)]
#[phase(plugin)]
extern crate rust_clippy;
extern crate clippy;
pub fn test(foo: Box<Vec<uint>>) {
println!("{}", foo)

View File

@ -1,7 +1,7 @@
#![feature(phase)]
#[phase(plugin)]
extern crate rust_clippy;
extern crate clippy;
extern crate collections;
use collections::dlist::DList;

View File

@ -1,7 +1,7 @@
#![feature(phase)]
#[phase(plugin)]
extern crate rust_clippy;
extern crate clippy;
fn main(){

View File

@ -1,7 +1,7 @@
#![feature(phase)]
#[phase(plugin)]
extern crate rust_clippy;
extern crate clippy;
fn the_answer(ref mut x: u8) {
*x = 42;