Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 201603b

Browse files
authored
Grammar
1 parent 3aa70ef commit 201603b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/guides/v2.3/howdoi/checkout/checkout_customize.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ To disable the component in your `checkout_index_index.xml` use the following in
154154

155155
## Remove a component {#remove}
156156

157-
If you want to keep a component from being rendered, you need to create a layout processor. A layout processor consists of a class, implementing
157+
To keep a component from being rendered, create a layout processor. A layout processor consists of a class, implementing
158158
the `\Magento\Checkout\Block\Checkout\LayoutProcessorInterface` interface, and thus a `LayoutProcessorInterface::process($jsLayout)` method.
159159

160160
```php
@@ -179,7 +179,7 @@ class OurLayoutProcessor implements LayoutProcessorInterface
179179
}
180180
```
181181

182-
Once created you can add the layout processor through Dependency Injection (DI).
182+
Once created, add the layout processor through Dependency Injection (DI).
183183

184184
```xml
185185
<?xml version="1.0"?>
@@ -194,7 +194,7 @@ Once created you can add the layout processor through Dependency Injection (DI).
194194
</config>
195195
```
196196

197-
If you want to use this sample in your code, replace the `%path_to_target_node%` placeholder with real value.
197+
To use this sample in your code, replace the `%path_to_target_node%` placeholder with real value.
198198

199199
{:.bs-callout-info}
200-
Disable vs remove a component: If you disable a component, it is loaded but not rendered. If you remove a component, it is removed and not loaded.
200+
Disable vs remove a component: A disabled component is loaded but not rendered. If you remove a component, it is removed and not loaded.

0 commit comments

Comments
 (0)