update docs

This commit is contained in:
RickyRister 2025-12-14 03:28:54 -08:00
parent bb084a18ec
commit 4899383057
2 changed files with 3 additions and 3 deletions

View file

@ -108,7 +108,7 @@ public:
* - Provide hashing for deck identity (deck hash). * - Provide hashing for deck identity (deck hash).
* *
* ### Ownership: * ### Ownership:
* - Owns the root `InnerDecklistNode` tree. * - Owns the `DecklistNodeTree`.
* - Owns `SideboardPlan` instances stored in `sideboardPlans`. * - Owns `SideboardPlan` instances stored in `sideboardPlans`.
* *
* ### Example workflow: * ### Example workflow:

View file

@ -202,7 +202,7 @@ public:
* affects its hash. * affects its hash.
* *
* Slots: * Slots:
* - rebuildTree(): rebuilds the model structure from the underlying DeckLoader. * - rebuildTree(): rebuilds the model structure from the underlying node tree.
*/ */
class DeckListModel : public QAbstractItemModel class DeckListModel : public QAbstractItemModel
{ {
@ -210,7 +210,7 @@ class DeckListModel : public QAbstractItemModel
public slots: public slots:
/** /**
* @brief Rebuilds the model tree from the underlying DeckLoader. * @brief Rebuilds the model tree from the underlying node tree.
* *
* This updates all indices and ensures the model reflects the current * This updates all indices and ensures the model reflects the current
* state of the deck. * state of the deck.