From 280141a88394e3addbca1e8e03851bd3a328294a Mon Sep 17 00:00:00 2001 From: Steffan Andrews Date: Wed, 16 Feb 2022 14:04:49 -0800 Subject: [PATCH] Cleanup --- Sources/XCTestUtils/wait Bool.swift | 2 +- Sources/XCTestUtils/wait Equals.swift | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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,