Skip to content

Commit f9f85b1

Browse files
committed
Fix comment ordering
1 parent 68fed49 commit f9f85b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/libsyntax/ast.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -728,13 +728,13 @@ impl Mutability {
728728
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
729729
#[derive(RustcEncodable, RustcDecodable, HashStable_Generic)]
730730
pub enum BorrowKind {
731-
/// A raw borrow, `&raw const $expr` or `&raw mut $expr`.
732-
/// The resulting type is either `*const T` or `*mut T`
733-
/// where `T = typeof($expr)`.
734-
Ref,
735731
/// A normal borrow, `&$expr` or `&mut $expr`.
736732
/// The resulting type is either `&'a T` or `&'a mut T`
737733
/// where `T = typeof($expr)` and `'a` is some lifetime.
734+
Ref,
735+
/// A raw borrow, `&raw const $expr` or `&raw mut $expr`.
736+
/// The resulting type is either `*const T` or `*mut T`
737+
/// where `T = typeof($expr)`.
738738
Raw,
739739
}
740740

0 commit comments

Comments
 (0)