Skip to content

Commit

Permalink
Merge pull request #2 from rust-lang/master
Browse files Browse the repository at this point in the history
update from origin 2020-06-10
  • Loading branch information
richkadel authored Jun 10, 2020
2 parents 2050512 + 2dee5f1 commit 9513f33
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
authors = ["The Rust Project Developers"]
name = "graphviz"
name = "rustc_graphviz"
version = "0.0.0"
edition = "2018"

[lib]
name = "graphviz"
name = "rustc_graphviz"
path = "lib.rs"
6 changes: 3 additions & 3 deletions lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
//! #![feature(rustc_private)]
//!
//! use std::io::Write;
//! use graphviz as dot;
//! use rustc_graphviz as dot;
//!
//! type Nd = isize;
//! type Ed = (isize,isize);
Expand Down Expand Up @@ -145,7 +145,7 @@
//! #![feature(rustc_private)]
//!
//! use std::io::Write;
//! use graphviz as dot;
//! use rustc_graphviz as dot;
//!
//! type Nd = usize;
//! type Ed<'a> = &'a (usize, usize);
Expand Down Expand Up @@ -207,7 +207,7 @@
//! #![feature(rustc_private)]
//!
//! use std::io::Write;
//! use graphviz as dot;
//! use rustc_graphviz as dot;
//!
//! type Nd<'a> = (usize, &'a str);
//! type Ed<'a> = (Nd<'a>, Nd<'a>);
Expand Down

0 comments on commit 9513f33

Please sign in to comment.