File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export default class PaperGridList extends Component {
5757  @tracked  children ; 
5858  /** 
5959   * Set of callbacks to notify children when they need to update their position. 
60-    * @type  {Set<callback > } 
60+    * @type  {Set<Function > } 
6161   */ 
6262  @tracked  childrenNotifyUpdate ; 
6363  /** 
@@ -115,7 +115,7 @@ export default class PaperGridList extends Component {
115115  /** 
116116   * Registers a child tile component 
117117   * @param  {PaperGridTile } tile - The tile component to register 
118-    * @param  {callback } notifyUpdate - A callback to notify children on when they should update. 
118+    * @param  {Function } notifyUpdate - A callback to notify children on when they should update. 
119119   */ 
120120  @action  registerChild ( tile ,  notifyUpdate )  { 
121121    this . children . add ( tile ) ; 
@@ -126,7 +126,7 @@ export default class PaperGridList extends Component {
126126  /** 
127127   * Unregisters a child tile component 
128128   * @param  {PaperGridTile } tile - The tile component to unregister 
129-    * @param  {callback } notifyUpdate - The notify callback to remove. 
129+    * @param  {Function } notifyUpdate - The notify callback to remove. 
130130   */ 
131131  @action  unregisterChild ( tile ,  notifyUpdate )  { 
132132    this . children . delete ( tile ) ; 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments