Skip to content

Commit a6efccd

Browse files
authored
Merge pull request #818 from jrvidal/minor-fixes
Fixes minor errors
2 parents 1d352dc + ecfd876 commit a6efccd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/paths.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ mod a { // ::a
327327
pub struct Struct; // ::a::Struct
328328

329329
pub trait Trait { // ::a::Trait
330-
fn f(&self); // a::Trait::f
330+
fn f(&self); // ::a::Trait::f
331331
}
332332

333333
impl Trait for Struct {

src/tokens.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ following forms:
283283
>
284284
> RAW_BYTE_STRING_CONTENT :\
285285
> &nbsp;&nbsp; &nbsp;&nbsp; `"` ASCII<sup>* (non-greedy)</sup> `"`\
286-
> &nbsp;&nbsp; | `#` RAW_STRING_CONTENT `#`
286+
> &nbsp;&nbsp; | `#` RAW_BYTE_STRING_CONTENT `#`
287287
>
288288
> ASCII :\
289289
> &nbsp;&nbsp; _any ASCII (i.e. 0x00 to 0x7F)_

0 commit comments

Comments
 (0)