Skip to content

Commit

Permalink
Merge pull request #818 from jrvidal/minor-fixes
Browse files Browse the repository at this point in the history
Fixes minor errors
  • Loading branch information
ehuss committed May 21, 2020
2 parents 1d352dc + ecfd876 commit a6efccd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/paths.md
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ mod a { // ::a
pub struct Struct; // ::a::Struct

pub trait Trait { // ::a::Trait
fn f(&self); // a::Trait::f
fn f(&self); // ::a::Trait::f
}

impl Trait for Struct {
Expand Down
2 changes: 1 addition & 1 deletion src/tokens.md
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ following forms:
>
> RAW_BYTE_STRING_CONTENT :\
> &nbsp;&nbsp; &nbsp;&nbsp; `"` ASCII<sup>* (non-greedy)</sup> `"`\
> &nbsp;&nbsp; | `#` RAW_STRING_CONTENT `#`
> &nbsp;&nbsp; | `#` RAW_BYTE_STRING_CONTENT `#`
>
> ASCII :\
> &nbsp;&nbsp; _any ASCII (i.e. 0x00 to 0x7F)_
Expand Down

0 comments on commit a6efccd

Please sign in to comment.