diff --git a/doc_classes/BTRepeatUntilFailure.xml b/doc_classes/BTRepeatUntilFailure.xml index dddec38..4c91a8f 100644 --- a/doc_classes/BTRepeatUntilFailure.xml +++ b/doc_classes/BTRepeatUntilFailure.xml @@ -1,12 +1,12 @@ - BT decorator that repeats child until [code]FAILURE[/code]. + BT decorator that repeats its child task until [code]FAILURE[/code]. - BT decorator that repeats the child until [code]FAILURE[/code] status is returned. - Returns [code]RUNNING[/code] when the child returns [code]RUNNING[/code] or [code]SUCCESS[/code]. - Returns [code]SUCCESS[/code] when the child returns [code]FAILURE[/code]. + BTRepeatUntilFailure repeats its child task until it results in [code]FAILURE[/code]. + Returns [code]RUNNING[/code] if the child task results in [code]RUNNING[/code] or [code]SUCCESS[/code]. + Returns [code]SUCCESS[/code] if the child task results in [code]FAILURE[/code]. diff --git a/doc_classes/BTRepeatUntilSuccess.xml b/doc_classes/BTRepeatUntilSuccess.xml index 1fea8be..d750a0d 100644 --- a/doc_classes/BTRepeatUntilSuccess.xml +++ b/doc_classes/BTRepeatUntilSuccess.xml @@ -1,12 +1,12 @@ - BT decorator that repeats child until [code]SUCCESS[/code]. + BT decorator that repeats its child task until [code]SUCCESS[/code]. - BT decorator that repeats the child until [code]SUCCESS[/code] status is returned. - Returns [code]RUNNING[/code] when the child returns [code]RUNNING[/code] or [code]FAILURE[/code]. - Returns [code]SUCCESS[/code] when the child returns [code]SUCCESS[/code]. + BTRepeatUntilSuccess repeats its child task until it results in [code]SUCCESS[/code]. + Returns [code]RUNNING[/code] if the child task results in [code]RUNNING[/code] or [code]FAILURE[/code]. + Returns [code]SUCCESS[/code] if the child task results in [code]SUCCESS[/code].