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 {
4949
5050/// Trait implemented by readable registers to enable the `read` method.
5151///
52- /// Registers marked with `Writable` can be also `modify`'ed.
52+ /// Registers marked with `Writable` can be also be `modify`'ed.
5353pub trait Readable : RegisterSpec {
5454 /// Result from a call to `read` and argument to `modify`.
5555 type Reader : From < R < Self > > + core:: ops:: Deref < Target = R < Self > > ;
@@ -59,7 +59,7 @@ pub trait Readable: RegisterSpec {
5959///
6060/// This enables the `write`, `write_with_zero` and `reset` methods.
6161///
62- /// Registers marked with `Readable` can be also `modify`'ed.
62+ /// Registers marked with `Readable` can be also be `modify`'ed.
6363pub trait Writable : RegisterSpec {
6464 /// Writer type argument to `write`, et al.
6565 type Writer : From < W < Self > > + core:: ops:: DerefMut < Target = W < Self > > ;
You can’t perform that action at this time.
0 commit comments