We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
generate_getter
1 parent 4b3a810 commit cbbe4daCopy full SHA for cbbe4da
crates/ide-assists/src/handlers/generate_getter.rs
@@ -216,9 +216,9 @@ pub(crate) fn generate_getter_impl(
216
217
// We don't insert a new line at the end of
218
// last getter as it will end up in the end
219
- // of an impl where we would like to keep getter
220
- // and end of impl ( i.e. `}` ) with a extra line
221
- // for no reason
+ // of an impl where we would not like to keep
+ // getter and end of impl ( i.e. `}` ) with an
+ // extra line for no reason
222
if i < record_fields_count - 1 {
223
buf = buf + "\n";
224
}
0 commit comments