From 76907e1c5e0a102e4d7ac955bbed1474c49916d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20Br=C3=BCckner?= Date: Wed, 18 Nov 2020 10:39:12 +0100 Subject: [PATCH] Fix some node docstrings --- blender/arm/logicnode/logic/LN_is_not_null.py | 2 +- blender/arm/logicnode/logic/LN_is_null.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/blender/arm/logicnode/logic/LN_is_not_null.py b/blender/arm/logicnode/logic/LN_is_not_null.py index 1832ef40..32d740fb 100644 --- a/blender/arm/logicnode/logic/LN_is_not_null.py +++ b/blender/arm/logicnode/logic/LN_is_not_null.py @@ -4,7 +4,7 @@ class IsNotNoneNode(ArmLogicTreeNode): """Passes through its activation only if the plugged-in value is not `null`. - @seeNode Is None""" + @seeNode Is Null""" bl_idname = 'LNIsNotNoneNode' bl_label = 'Is Not Null' arm_version = 1 diff --git a/blender/arm/logicnode/logic/LN_is_null.py b/blender/arm/logicnode/logic/LN_is_null.py index 63d97095..7388f9d5 100644 --- a/blender/arm/logicnode/logic/LN_is_null.py +++ b/blender/arm/logicnode/logic/LN_is_null.py @@ -5,7 +5,7 @@ class IsNoneNode(ArmLogicTreeNode): """Passes through its activation only if the plugged-in value is `null` (no value). - @seeNode Is Not None""" + @seeNode Is Not Null""" bl_idname = 'LNIsNoneNode' bl_label = 'Is Null' arm_version = 1