Skip to content

Commit 153daab

Browse files
authored
typo fixes
1 parent acec68f commit 153daab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

NodeGraphQt/base/node.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ def set_x_pos(self, x):
307307
Set the node horizontal X position in the node graph.
308308
309309
Args:
310-
x (float or int): node X position:
310+
x (float or int): node X position.
311311
"""
312312
y = self.pos()[1]
313313
self.set_pos(float(x), y)
@@ -317,7 +317,7 @@ def set_y_pos(self, y):
317317
Set the node horizontal Y position in the node graph.
318318
319319
Args:
320-
y (float or int): node Y position:
320+
y (float or int): node Y position.
321321
"""
322322

323323
x = self.pos()[0]
@@ -522,7 +522,7 @@ def add_output(self, name='output', multi_output=True, display_name=True,
522522

523523
def inputs(self):
524524
"""
525-
Returns all the input port for the node.
525+
Returns all the input ports from the node.
526526
527527
Returns:
528528
dict: {<port_name>: <port_object>}
@@ -531,7 +531,7 @@ def inputs(self):
531531

532532
def outputs(self):
533533
"""
534-
Returns all the output port for the node.
534+
Returns all the output ports from the node.
535535
536536
Returns:
537537
dict: {<port_name>: <port_object>}

0 commit comments

Comments
 (0)