Skip to content

Commit

Permalink
Rollup merge of #43891 - Fourchaux:master, r=steveklabnik
Browse files Browse the repository at this point in the history
Fix typos & us spellings

Fixing some typos and non en-US spellings.

(Update of PR rust-lang/rust#42812 )
  • Loading branch information
frewsxcv committed Aug 17, 2017
2 parents ae27b06 + 2ff1118 commit 399a4d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//! Generate files suitable for use with [Graphviz](http://www.graphviz.org/)
//!
//! The `render` function generates output (e.g. an `output.dot` file) for
//! use with [Graphviz](http://www.graphviz.org/) by walking a labelled
//! use with [Graphviz](http://www.graphviz.org/) by walking a labeled
//! graph. (Graphviz can then automatically lay out the nodes and edges
//! of the graph, and also optionally render the graph as an image or
//! other [output formats](
Expand Down Expand Up @@ -150,7 +150,7 @@
//!
//! The output from this example renders four nodes that make up the
//! Hasse-diagram for the subsets of the set `{x, y}`. Each edge is
//! labelled with the ⊆ character (specified using the HTML character
//! labeled with the ⊆ character (specified using the HTML character
//! entity `&sube`).
//!
//! ```rust
Expand Down Expand Up @@ -789,7 +789,7 @@ mod tests {
}

struct LabelledGraph {
/// The name for this graph. Used for labelling generated `digraph`.
/// The name for this graph. Used for labeling generated `digraph`.
name: &'static str,

/// Each node is an index into `node_labels`; these labels are
Expand Down

0 comments on commit 399a4d3

Please sign in to comment.