From 7ca15117a15c3d482049f6555140ba0b5d261023 Mon Sep 17 00:00:00 2001 From: Eric Defore Date: Thu, 18 May 2023 14:34:56 -0400 Subject: [PATCH] Fixes a small mistake in markdown syntax --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2687602..d10a34c 100644 --- a/README.md +++ b/README.md @@ -909,7 +909,7 @@ $meta_values = DB::get_col( ### `esc_like()` -Escapes a string with a percent sign in it so it can be safely used with (Where LIKE)[#where-like-clauses] without the percent sign being interpreted as a wildcard character. +Escapes a string with a percent sign in it so it can be safely used with [Where LIKE](#where-like-clauses) without the percent sign being interpreted as a wildcard character. ```php $escaped_string = DB::esc_like( 'This string has a % in it that is not a wildcard character' );