Merge pull request #2019 from MoritzBrueckner/fix-node-docs

Fix some node docstrings
This commit is contained in:
Lubos Lenco 2020-11-19 16:14:16 +01:00 committed by GitHub
commit bfb999550e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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