diff --git a/packages/schemas/docs/02-forms/04-checkbox.md b/packages/schemas/docs/02-forms/04-checkbox.md index 5b0c92a6399..254120a8252 100644 --- a/packages/schemas/docs/02-forms/04-checkbox.md +++ b/packages/schemas/docs/02-forms/04-checkbox.md @@ -83,7 +83,7 @@ Checkbox::make('terms_of_service') ->accepted(FeatureFlag::active()) ``` -As well as allowing a static value, the `accepted()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters. +As well as allowing a static value, the `accepted()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters. ### Declined validation @@ -105,4 +105,4 @@ Checkbox::make('is_under_18') ->declined(FeatureFlag::active()) ``` -As well as allowing a static value, the `declined()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters. +As well as allowing a static value, the `declined()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters. diff --git a/packages/schemas/docs/02-forms/05-toggle.md b/packages/schemas/docs/02-forms/05-toggle.md index 98e73773ce2..b86fe84856a 100644 --- a/packages/schemas/docs/02-forms/05-toggle.md +++ b/packages/schemas/docs/02-forms/05-toggle.md @@ -117,7 +117,7 @@ Toggle::make('terms_of_service') ->accepted(FeatureFlag::active()) ``` -As well as allowing a static value, the `accepted()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters. +As well as allowing a static value, the `accepted()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters. ### Declined validation @@ -139,5 +139,5 @@ Toggle::make('is_under_18') ->declined(FeatureFlag::active()) ``` -As well as allowing a static value, the `declined()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters. +As well as allowing a static value, the `declined()` method also accepts a function to dynamically calculate it. You can inject various utilities into the function as parameters.