diff --git a/Sources/XCTestUtils/wait Bool.swift b/Sources/XCTestUtils/wait Bool.swift index 3f66cb7..04da003 100644 --- a/Sources/XCTestUtils/wait Bool.swift +++ b/Sources/XCTestUtils/wait Bool.swift @@ -9,8 +9,8 @@ import XCTest extension XCTestCase { - /// **OTCore:** /// Wait for a condition to be true, with a timeout period. + /// /// Polling defaults to every 10 milliseconds, but can be overridden. public func wait( for condition: @autoclosure () -> Bool, diff --git a/Sources/XCTestUtils/wait Equals.swift b/Sources/XCTestUtils/wait Equals.swift index 9cda8eb..b3e6baa 100644 --- a/Sources/XCTestUtils/wait Equals.swift +++ b/Sources/XCTestUtils/wait Equals.swift @@ -9,8 +9,8 @@ import XCTest extension XCTestCase { - /// **OTCore:** - /// Wait for a condition to be true, with a timeout period. + /// Wait for an equality condition to be true, with a timeout period. + /// /// Polling defaults to every 10 milliseconds, but can be overridden. public func wait( for lhs: @autoclosure () throws -> T,