Skip to content

Commit

Permalink
Fix a few typos in the code
Browse files Browse the repository at this point in the history
  • Loading branch information
sylvestre committed Jul 3, 2016
1 parent ecbfa47 commit 872d107
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/librustdoc/html/highlight.rs
Expand Up @@ -107,7 +107,7 @@ pub enum Class {
///
/// The classifier will call into the `Writer` implementation as it finds spans
/// of text to highlight. Exactly how that text should be highlighted is up to
/// the implemention.
/// the implementation.
pub trait Writer {
/// Called when we start processing a span of text that should be highlighted.
/// The `Class` argument specifies how it should be highlighted.
Expand Down
2 changes: 1 addition & 1 deletion src/librustdoc/html/render.rs
Expand Up @@ -2721,7 +2721,7 @@ impl<'a> fmt::Display for Sidebar<'a> {
let parentlen = cx.current.len() - if it.is_mod() {1} else {0};

// the sidebar is designed to display sibling functions, modules and
// other miscellaneous informations. since there are lots of sibling
// other miscellaneous information. since there are lots of sibling
// items (and that causes quadratic growth in large modules),
// we refactor common parts into a shared JavaScript file per module.
// still, we don't move everything into JS because we want to preserve
Expand Down
2 changes: 1 addition & 1 deletion src/libstd/memchr.rs
Expand Up @@ -239,7 +239,7 @@ mod fallback {
text[..offset].iter().rposition(|elt| *elt == x)
}

// test fallback implementations on all plattforms
// test fallback implementations on all platforms
#[test]
fn matches_one() {
assert_eq!(Some(0), memchr(b'a', b"a"));
Expand Down

0 comments on commit 872d107

Please sign in to comment.