Skip to content

Commit deb8be9

Browse files
[autofix.ci] apply automated fixes
1 parent 5b8fb30 commit deb8be9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/oxc_linter/src/rules/vue/no_required_prop_with_default.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ declare_oxc_lint!(
3030
///
3131
/// ### Why is this bad?
3232
///
33-
/// If a prop is declared with a default value, whether it is required or not,
34-
/// we can always skip it in actual use. In that situation, the default value would be applied.
35-
/// So, a required prop with a default value is essentially the same as an optional prop.
33+
/// If a prop is declared with a default value, whether it is required or not,
34+
/// we can always skip it in actual use. In that situation, the default value would be applied.
35+
/// So, a required prop with a default value is essentially the same as an optional prop.
3636
///
3737
/// ### Examples
3838
///

0 commit comments

Comments
 (0)