Skip to content

Commit b3486b2

Browse files
authored
Docs: Fix JSDoc of inspector. (#32192)
1 parent 2eefcd6 commit b3486b2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/renderers/common/Renderer.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -996,11 +996,6 @@ class Renderer {
996996

997997
//
998998

999-
/**
1000-
* Sets the inspector instance. The inspector can be any class that extends from `InspectorBase`.
1001-
*
1002-
* @param {InspectorBase} value - The new inspector.
1003-
*/
1004999
set inspector( value ) {
10051000

10061001
if ( this._inspector !== null ) {
@@ -1014,6 +1009,11 @@ class Renderer {
10141009

10151010
}
10161011

1012+
/**
1013+
* The inspector instance. The inspector can be any class that extends from `InspectorBase`.
1014+
*
1015+
* @type {InspectorBase}
1016+
*/
10171017
get inspector() {
10181018

10191019
return this._inspector;

0 commit comments

Comments
 (0)