diff options
author | Jaime Resano <[email protected]> | 2025-04-03 07:42:09 +0200 |
---|---|---|
committer | Jaime Resano <[email protected]> | 2025-04-03 21:53:19 +0000 |
commit | fb81398a9e1602e0c1d4f150f4aae976614b526c (patch) | |
tree | dbb865888dcb65b0ecdbffd2a589a2544508e5cf /sources/shiboken6 | |
parent | fc4850d85d4917df76b1e84aa9ef5570712d30df (diff) |
doc: Fix broken ref: "parent"
The :ref:`parent` is currently broken and showing an error during the
generation of the documentation files:
sources\shiboken6\doc\typesystem_arguments.rst:192:
WARNING: undefined label: 'parent'
This patch fixes the issue.
Change-Id: Ib3cc8ec010c9ccf1dc44fd129705ac13576f026e
Reviewed-by: Shyamnath Premnadh <[email protected]>
Reviewed-by: Jaime Resano <[email protected]>
Reviewed-by: Ece Cinucen <[email protected]>
Diffstat (limited to 'sources/shiboken6')
-rw-r--r-- | sources/shiboken6/doc/typesystem_arguments.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/shiboken6/doc/typesystem_arguments.rst b/sources/shiboken6/doc/typesystem_arguments.rst index 90387ec1a..4e54446c3 100644 --- a/sources/shiboken6/doc/typesystem_arguments.rst +++ b/sources/shiboken6/doc/typesystem_arguments.rst @@ -192,8 +192,8 @@ holds the reference(s). It defaults to the function signature. For instance, in a model/view relation, a view receiving a model as argument for a **setModel()** method should increment the model's reference counting, since the model should be kept alive as long as the view lives. -Remember that our hypothetical view cannot become a :ref:`parent` of the -model, since the said model could be used by other views as well. +Remember that our hypothetical view cannot become a :ref:`parent <ownership-parent>` +of the model, since the said model could be used by other views as well. .. _parent-on-arguments: |