Skip to content

Commit e6949db

Browse files
Amanda Butlergeky
authored andcommitted
bd: Copy edit BlockDevices
Copy edit SlicingBlockDevice.h Copy edit ReadOnlyBlockDevice.h Copy edit ProfilingBlockDevice.h Copy edit ObservingBlockDevice.h Copy edit MBRBlockDevice.h Copy edit ExhaustibleBlockDevice.h Copy edit ChainingBlockDevice.h Copy edit BlockDevice.h Copy edit files for active voice and consistent tense.
1 parent 88aad81 commit e6949db

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

features/filesystem/bd/BlockDevice.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ class BlockDevice
139139
/** Get the value of storage when erased
140140
*
141141
* If get_erase_value returns a non-negative byte value, the underlying
142-
* storage will be set to that value when erased, and storage containing
142+
* storage is set to that value when erased, and storage containing
143143
* that value can be programmed without another erase.
144144
*
145-
* @return The value of storage when erased, or -1 if the value of
146-
* erased storage can't be relied on
145+
* @return The value of storage when erased, or -1 if you can't
146+
* rely on the value of erased storage
147147
*/
148148
virtual int get_erase_value() const
149149
{

features/filesystem/bd/ChainingBlockDevice.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,11 +139,11 @@ class ChainingBlockDevice : public BlockDevice
139139
/** Get the value of storage when erased
140140
*
141141
* If get_erase_value returns a non-negative byte value, the underlying
142-
* storage will be set to that value when erased, and storage containing
142+
* storage is set to that value when erased, and storage containing
143143
* that value can be programmed without another erase.
144144
*
145-
* @return The value of storage when erased, or -1 if the value of
146-
* erased storage can't be relied on
145+
* @return The value of storage when erased, or -1 if you can't
146+
* rely on the value of erased storage
147147
*/
148148
virtual int get_erase_value() const;
149149

features/filesystem/bd/ExhaustibleBlockDevice.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -122,11 +122,11 @@ class ExhaustibleBlockDevice : public BlockDevice
122122
/** Get the value of storage when erased
123123
*
124124
* If get_erase_value returns a non-negative byte value, the underlying
125-
* storage will be set to that value when erased, and storage containing
125+
* storage is set to that value when erased, and storage containing
126126
* that value can be programmed without another erase.
127127
*
128-
* @return The value of storage when erased, or -1 if the value of
129-
* erased storage can't be relied on
128+
* @return The value of storage when erased, or -1 if you can't
129+
* rely on the value of erased storage
130130
*/
131131
virtual int get_erase_value() const;
132132

features/filesystem/bd/MBRBlockDevice.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -193,11 +193,11 @@ class MBRBlockDevice : public BlockDevice
193193
/** Get the value of storage when erased
194194
*
195195
* If get_erase_value returns a non-negative byte value, the underlying
196-
* storage will be set to that value when erased, and storage containing
196+
* storage is set to that value when erased, and storage containing
197197
* that value can be programmed without another erase.
198198
*
199-
* @return The value of storage when erased, or -1 if the value of
200-
* erased storage can't be relied on
199+
* @return The value of storage when erased, or -1 if you can't
200+
* rely on the value of erased storage
201201
*/
202202
virtual int get_erase_value() const;
203203

features/filesystem/bd/ObservingBlockDevice.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ class ObservingBlockDevice : public BlockDevice
108108
/** Get the value of storage when erased
109109
*
110110
* If get_erase_value returns a non-negative byte value, the underlying
111-
* storage will be set to that value when erased, and storage containing
111+
* storage is set to that value when erased, and storage containing
112112
* that value can be programmed without another erase.
113113
*
114-
* @return The value of storage when erased, or -1 if the value of
115-
* erased storage can't be relied on
114+
* @return The value of storage when erased, or -1 if you can't
115+
* rely on the value of erased storage
116116
*/
117117
virtual int get_erase_value() const;
118118

features/filesystem/bd/ProfilingBlockDevice.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,11 @@ class ProfilingBlockDevice : public BlockDevice
125125
/** Get the value of storage when erased
126126
*
127127
* If get_erase_value returns a non-negative byte value, the underlying
128-
* storage will be set to that value when erased, and storage containing
129-
* that value can be programmed without another erase.
128+
* storage is set to that value when erased, and you can program storage
129+
* containing that value without another erase.
130130
*
131-
* @return The value of storage when erased, or -1 if the value of
132-
* erased storage can't be relied on
131+
* @return The value of storage when erased, or -1 if you can't
132+
* rely on the value of erased storage
133133
*/
134134
virtual int get_erase_value() const;
135135

features/filesystem/bd/ReadOnlyBlockDevice.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,11 +101,11 @@ class ReadOnlyBlockDevice : public BlockDevice
101101
/** Get the value of storage when erased
102102
*
103103
* If get_erase_value returns a non-negative byte value, the underlying
104-
* storage will be set to that value when erased, and storage containing
104+
* storage is set to that value when erased, and storage containing
105105
* that value can be programmed without another erase.
106106
*
107-
* @return The value of storage when erased, or -1 if the value of
108-
* erased storage can't be relied on
107+
* @return The value of storage when erased, or -1 if you can't
108+
* rely on the value of erased storage
109109
*/
110110
virtual int get_erase_value() const;
111111

features/filesystem/bd/SlicingBlockDevice.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,11 @@ class SlicingBlockDevice : public BlockDevice
131131
/** Get the value of storage when erased
132132
*
133133
* If get_erase_value returns a non-negative byte value, the underlying
134-
* storage will be set to that value when erased, and storage containing
134+
* storage is set to that value when erased, and storage containing
135135
* that value can be programmed without another erase.
136136
*
137-
* @return The value of storage when erased, or -1 if the value of
138-
* erased storage can't be relied on
137+
* @return The value of storage when erased, or -1 if you can't
138+
* rely on the value of erased storage
139139
*/
140140
virtual int get_erase_value() const;
141141

0 commit comments

Comments
 (0)