rust_clippy -> clippy
This commit is contained in:
parent
e57396bc52
commit
a8aadc7376
@ -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"]
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#![feature(phase)]
|
||||
|
||||
#[phase(plugin)]
|
||||
extern crate rust_clippy;
|
||||
extern crate clippy;
|
||||
|
||||
pub fn test(foo: Box<Vec<uint>>) {
|
||||
println!("{}", foo)
|
||||
|
@ -1,7 +1,7 @@
|
||||
#![feature(phase)]
|
||||
|
||||
#[phase(plugin)]
|
||||
extern crate rust_clippy;
|
||||
extern crate clippy;
|
||||
extern crate collections;
|
||||
use collections::dlist::DList;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#![feature(phase)]
|
||||
|
||||
#[phase(plugin)]
|
||||
extern crate rust_clippy;
|
||||
extern crate clippy;
|
||||
|
||||
|
||||
fn main(){
|
||||
|
@ -1,7 +1,7 @@
|
||||
#![feature(phase)]
|
||||
|
||||
#[phase(plugin)]
|
||||
extern crate rust_clippy;
|
||||
extern crate clippy;
|
||||
|
||||
fn the_answer(ref mut x: u8) {
|
||||
*x = 42;
|
||||
|
Loading…
Reference in New Issue
Block a user