Skip to content

Commit

Permalink
Fix incorrectly parsed markdown link
Browse files Browse the repository at this point in the history
  • Loading branch information
mdinger committed Feb 28, 2015
1 parent 8a69110 commit 000e976
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/libcollections/str.rs
Expand Up @@ -1455,9 +1455,9 @@ pub trait StrExt: Index<RangeFull, Output = str> {
///
/// `is_cjk` determines behavior for characters in the Ambiguous category: if `is_cjk` is
/// `true`, these are 2 columns wide; otherwise, they are 1. In CJK locales, `is_cjk` should be
/// `true`, else it should be `false`. [Unicode Standard Annex
/// #11](http://www.unicode.org/reports/tr11/) recommends that these characters be treated as 1
/// column (i.e., `is_cjk` = `false`) if the locale is unknown.
/// `true`, else it should be `false`.
/// [Unicode Standard Annex #11](http://www.unicode.org/reports/tr11/) recommends that these
/// characters be treated as 1 column (i.e., `is_cjk = false`) if the locale is unknown.
#[unstable(feature = "collections",
reason = "this functionality may only be provided by libunicode")]
fn width(&self, is_cjk: bool) -> usize {
Expand Down

0 comments on commit 000e976

Please sign in to comment.