Skip to content

Commit 38df733

Browse files
Minor fixes (#307)
1 parent 885627a commit 38df733

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/controls/complex-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ class Elementor_Test_Widget extends \Elementor\Widget_Base {
320320
* Determine whether to optimize the DOM size.
321321
*
322322
* @since 1.0.0
323-
* @access protected
323+
* @access public
324324
* @return bool Whether to optimize the DOM size.
325325
*/
326326
public function has_widget_inner_wrapper(): bool {

src/controls/simple-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ class Elementor_Currency_Widget extends \Elementor\Widget_Base {
297297
* Determine whether to optimize the DOM size.
298298
*
299299
* @since 1.0.0
300-
* @access protected
300+
* @access public
301301
* @return bool Whether to optimize the DOM size.
302302
*/
303303
public function has_widget_inner_wrapper(): bool {

src/js/hooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ export class Component extends $e.modules.ComponentBase {
119119
## Conventions
120120

121121
```javascript
122-
// {FILE_PATH}/{FILE_NAME} - This is line should be deleted - just for the exmaple.
122+
// {FILE_PATH}/{FILE_NAME} - This is line should be deleted - just for the example.
123123
import HookUIAfter from 'elementor-api/modules/hooks/{TYPE}/after';
124124

125125
export class {FILE_NAME_CAMEL_CASE} extends HookUIAfter {

src/widgets/advanced-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ class Elementor_List_Widget extends \Elementor\Widget_Base {
182182
* Determine whether to optimize the DOM size.
183183
*
184184
* @since 1.0.0
185-
* @access protected
185+
* @access public
186186
* @return bool Whether to optimize the DOM size.
187187
*/
188188
public function has_widget_inner_wrapper(): bool {

src/widgets/simple-example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ class Elementor_oEmbed_Widget extends \Elementor\Widget_Base {
161161
* Determine whether to optimize the DOM size.
162162
*
163163
* @since 1.0.0
164-
* @access protected
164+
* @access public
165165
* @return bool Whether to optimize the DOM size.
166166
*/
167167
public function has_widget_inner_wrapper(): bool {

0 commit comments

Comments
 (0)