File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ pub trait RegisterSpec {
49
49
50
50
/// Trait implemented by readable registers to enable the `read` method.
51
51
///
52
- /// Registers marked with `Writable` can be also `modify`'ed.
52
+ /// Registers marked with `Writable` can be also be `modify`'ed.
53
53
pub trait Readable : RegisterSpec {
54
54
/// Result from a call to `read` and argument to `modify`.
55
55
type Reader : From < R < Self > > + core:: ops:: Deref < Target = R < Self > > ;
@@ -59,7 +59,7 @@ pub trait Readable: RegisterSpec {
59
59
///
60
60
/// This enables the `write`, `write_with_zero` and `reset` methods.
61
61
///
62
- /// Registers marked with `Readable` can be also `modify`'ed.
62
+ /// Registers marked with `Readable` can be also be `modify`'ed.
63
63
pub trait Writable : RegisterSpec {
64
64
/// Writer type argument to `write`, et al.
65
65
type Writer : From < W < Self > > + core:: ops:: DerefMut < Target = W < Self > > ;
You can’t perform that action at this time.
0 commit comments