docs(assert): remove outdated API docs (#4937)

This commit is contained in:
Yoshiya Hinosawa 2024-06-03 19:53:13 +09:00 committed by GitHub
parent 527b5d462c
commit c28c34991f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19,13 +19,10 @@ import { AssertionError } from "./assertion_error.ts";
* assertEquals("hello", "world"); // Throws
* ```
*
* Note: formatter option is experimental and may be removed in the future.
*
* @typeParam T The type of the values to compare. This is usually inferred.
* @param actual The actual value to compare.
* @param expected The expected value to compare.
* @param msg The optional message to display if the assertion fails.
* @param options The optional object for the assertion.
*/
export function assertEquals<T>(
actual: T,