Skip to content

Commit 7da5834

Browse files
committed
chore: Update docstrings
1 parent 8b2a1c2 commit 7da5834

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/rmqrcode/segments.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def _compute_costs(self, data):
121121
self.parents[n + 1][new_mode][new_length] = (n, mode, unfilled_length)
122122

123123
def _compute_new_state_without_mode_changing(self, character, new_mode, unfilled_length):
124-
"""Computes the new state without mode changing.
124+
"""Computes the new state values without mode changing.
125125
126126
Args:
127127
character (str): The current character. Assume this as one length string.
@@ -148,7 +148,7 @@ def _compute_new_state_without_mode_changing(self, character, new_mode, unfilled
148148
return (cost, new_length)
149149

150150
def _compute_new_state_with_mode_changing(self, character, new_mode, unfilled_length):
151-
"""Computes the new state with mode changing.
151+
"""Computes the new state values with mode changing.
152152
153153
Args:
154154
character (str): The current character. Assume this as one length string.

0 commit comments

Comments
 (0)