Skip to content

Commit 18589d7

Browse files
committed
minor phrasing fix
1 parent 2b696e6 commit 18589d7

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

zephyr_ml/core.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,19 +115,20 @@ def try_log_forward_set_method_warning(self, name, next_step):
115115
LOGGER.warning((f"[GUIDE] STALE WARNING: \n"
116116
f"\t{from_str}\n"
117117
f"\tThis is a forward step via a set method.\n"
118-
f"\tAll previous steps will be considered stale."))
118+
f"\tAll previous steps' results will be considered stale."))
119119

120120
def try_log_backwards_set_method_warning(self, name, next_step):
121121
LOGGER.warning((f"[GUIDE] STALE WARNING: \n"
122122
f"\tGoing from step {self.current_step} to "
123123
f"step {next_step} by performing {name}.\n"
124124
f"\tThis is a backwards step via a set method.\n"
125-
f"\tAll other steps will be considered stale."))
125+
f"\tAll other steps' results will be considered stale."))
126126

127127
def try_log_backwards_key_method_warning(self, name, next_step):
128128
steps_in_between = self.get_steps_in_between(next_step, self.current_step+1)
129129
if len(steps_in_between) > 0:
130-
steps_in_between_str = (f"\tThe following steps will be considered stale:\n"
130+
steps_in_between_str = (f"\tAny results produced by the following steps "
131+
f"will be considered stale:\n"
131132
f"\t{self.join_steps(steps_in_between)}")
132133
else:
133134
steps_in_between_str = ""

0 commit comments

Comments
 (0)