@@ -139,15 +139,15 @@ namespace fbcpp
139139 }
140140
141141 // /
142- // / Returns whether database sweep is enabled .
142+ // / Returns whether database sweep is configured to be run .
143143 // /
144144 bool getSweep () const
145145 {
146146 return sweep;
147147 }
148148
149149 // /
150- // / Sets whether database sweep is enabled .
150+ // / Sets whether database sweep should be run .
151151 // /
152152 DatabaseRepairOptions& setSweep (bool value)
153153 {
@@ -156,15 +156,15 @@ namespace fbcpp
156156 }
157157
158158 // /
159- // / Returns whether database validation is enabled .
159+ // / Returns whether database validation is configured to be run .
160160 // /
161161 bool getValidate () const
162162 {
163163 return validate;
164164 }
165165
166166 // /
167- // / Sets whether database validation is enabled .
167+ // / Sets whether database validation should be run .
168168 // /
169169 DatabaseRepairOptions& setValidate (bool value)
170170 {
@@ -173,15 +173,15 @@ namespace fbcpp
173173 }
174174
175175 // /
176- // / Returns whether database mending is enabled .
176+ // / Returns whether database mending is configured to be run .
177177 // /
178178 bool getMend () const
179179 {
180180 return mend;
181181 }
182182
183183 // /
184- // / Sets whether database mending is enabled .
184+ // / Sets whether database mending should be run .
185185 // /
186186 DatabaseRepairOptions& setMend (bool value)
187187 {
@@ -190,15 +190,15 @@ namespace fbcpp
190190 }
191191
192192 // /
193- // / Returns whether checksum verification is ignored.
193+ // / Returns whether checksum verification is configured to be ignored.
194194 // /
195195 bool getIgnoreChecksum () const
196196 {
197197 return ignoreChecksum;
198198 }
199199
200200 // /
201- // / Sets whether checksum verification is ignored.
201+ // / Sets whether checksum verification should be ignored.
202202 // /
203203 DatabaseRepairOptions& setIgnoreChecksum (bool value)
204204 {
@@ -207,15 +207,15 @@ namespace fbcpp
207207 }
208208
209209 // /
210- // / Returns whether killing database shadows is enabled .
210+ // / Returns whether killing database shadows is configured to be run .
211211 // /
212212 bool getKillShadows () const
213213 {
214214 return killShadows;
215215 }
216216
217217 // /
218- // / Sets whether killing database shadows is enabled .
218+ // / Sets whether killing database shadows should be run .
219219 // /
220220 DatabaseRepairOptions& setKillShadows (bool value)
221221 {
@@ -224,15 +224,15 @@ namespace fbcpp
224224 }
225225
226226 // /
227- // / Returns whether full validation is enabled .
227+ // / Returns whether full validation is configured to be run .
228228 // /
229229 bool getFull () const
230230 {
231231 return full;
232232 }
233233
234234 // /
235- // / Sets whether full validation is enabled .
235+ // / Sets whether full validation should be run .
236236 // /
237237 DatabaseRepairOptions& setFull (bool value)
238238 {
@@ -241,15 +241,15 @@ namespace fbcpp
241241 }
242242
243243 // /
244- // / Returns whether checking only metadata/structure is enabled .
244+ // / Returns whether checking only metadata/structure is configured to be run .
245245 // /
246246 bool getCheckDb () const
247247 {
248248 return checkDb;
249249 }
250250
251251 // /
252- // / Sets whether checking only metadata/structure is enabled .
252+ // / Sets whether checking only metadata/structure should be run .
253253 // /
254254 DatabaseRepairOptions& setCheckDb (bool value)
255255 {
@@ -258,15 +258,15 @@ namespace fbcpp
258258 }
259259
260260 // /
261- // / Returns whether recreating ICU indexes is enabled .
261+ // / Returns whether recreating ICU indexes is configured to be run .
262262 // /
263263 bool getIcu () const
264264 {
265265 return icu;
266266 }
267267
268268 // /
269- // / Sets whether recreating ICU indexes is enabled .
269+ // / Sets whether recreating ICU indexes should be run .
270270 // /
271271 DatabaseRepairOptions& setIcu (bool value)
272272 {
@@ -275,15 +275,15 @@ namespace fbcpp
275275 }
276276
277277 // /
278- // / Returns whether database upgrade is enabled .
278+ // / Returns whether database upgrade is configured to be run .
279279 // /
280280 bool getUpgradeDb () const
281281 {
282282 return upgradeDb;
283283 }
284284
285285 // /
286- // / Sets whether database upgrade is enabled .
286+ // / Sets whether database upgrade should be run .
287287 // /
288288 DatabaseRepairOptions& setUpgradeDb (bool value)
289289 {
0 commit comments