Skip to content

Commit

Permalink
[framework] Fix typo (#4474)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugtalbot committed Feb 1, 2024
1 parent 24fc9e7 commit d22c81a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Sofa/framework/Core/src/sofa/core/objectmodel/BaseObject.h
Expand Up @@ -211,14 +211,14 @@ class SOFA_CORE_API BaseObject : public virtual Base

public:

/// the component can insert itseft direclty in the right sequence in the Node
/// so the Node does not have to test its type against every known types.
/// \returns true iff the component was inserted
/// the component can insert itself directly in the right sequence in the Node
/// so the Node does not have to test its type against all known types
/// \returns true if the component was inserted
virtual bool insertInNode( BaseNode* /*node*/ ) { return false; }

/// the component can remove itseft direclty in the right sequence in the Node
/// so the Node does not have to test its type against every known types.
/// \returns true iff the component was removed
/// the component can remove itself directly in the right sequence in the Node
/// so the Node does not have to test its type against all known types
/// \returns true if the component was removed
virtual bool removeInNode( BaseNode* /*node*/ ) { return false; }
};

Expand Down

0 comments on commit d22c81a

Please sign in to comment.