···1414 /// </summary>
1515 /// <param name="delay">The offset in milliseconds from current time. Note that this stacks with other nested sequences.</param>
1616 /// <param name="recursive">Whether this should be applied to all children. True by default.</param>
1717- /// <returns>A <see cref="InvokeOnDisposal"/> to be used in a using() statement.</returns>
1717+ /// <returns>An <see cref="InvokeOnDisposal"/> to be used in a using() statement.</returns>
1818 IDisposable BeginDelayedSequence(double delay, bool recursive = true);
19192020 /// <summary>
2121 /// Start a sequence of <see cref="Transform"/>s from an absolute time value (adjusts <see cref="TransformStartTime"/>).
2222 /// </summary>
2323 /// <param name="newTransformStartTime">The new value for <see cref="TransformStartTime"/>.</param>
2424- /// <param name="recursive">Whether this should be applied to all children.</param>
2525- /// <returns>A <see cref="InvokeOnDisposal"/> to be used in a using() statement. True by default.</returns>
2424+ /// <param name="recursive">Whether this should be applied to all children. True by default.</param>
2525+ /// <returns>An <see cref="InvokeOnDisposal"/> to be used in a using() statement.</returns>
2626 /// <exception cref="InvalidOperationException">Absolute sequences should never be nested inside another existing sequence.</exception>
2727 IDisposable BeginAbsoluteSequence(double newTransformStartTime, bool recursive = true);
2828
···227227 /// </summary>
228228 /// <param name="delay">The offset in milliseconds from current time. Note that this stacks with other nested sequences.</param>
229229 /// <param name="recursive">Whether this should be applied to all children. True by default.</param>
230230- /// <returns>A <see cref="InvokeOnDisposal"/> to be used in a using() statement.</returns>
230230+ /// <returns>An <see cref="InvokeOnDisposal"/> to be used in a using() statement.</returns>
231231 public IDisposable BeginDelayedSequence(double delay, bool recursive = true)
232232 {
233233 if (delay == 0)
···271271 /// </summary>
272272 /// <param name="newTransformStartTime">The new value for <see cref="TransformStartTime"/>.</param>
273273 /// <param name="recursive">Whether this should be applied to all children. True by default.</param>
274274- /// <returns>A <see cref="InvokeOnDisposal"/> to be used in a using() statement.</returns>
274274+ /// <returns>An <see cref="InvokeOnDisposal"/> to be used in a using() statement.</returns>
275275 /// <exception cref="InvalidOperationException">Absolute sequences should never be nested inside another existing sequence.</exception>
276276 public virtual IDisposable BeginAbsoluteSequence(double newTransformStartTime, bool recursive = true)
277277 {