Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
xumingming committed Jan 29, 2024
1 parent 33e4cb2 commit 91cbba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/blog/2024-01-27-like-optimization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ These simple patterns are straightforward to optimize, there are some more
relaxed patterns that are not so straightforward:

- `hello_velox%`: matches inputs that start with 'hello', followed by any character, then followed by 'velox'.
- `hello_velox%`: matches inputs that end with 'hello', followed by any character, then followed by 'velox'.
- `%hello_velox`: matches inputs that end with 'hello', followed by any character, then followed by 'velox'.
- `%hello_velox%`: matches inputs that contains both 'hello' and 'velox', and there is a single character separating them.

Although these patterns look similar to previous ones, but they are not so straightforward
Expand Down

0 comments on commit 91cbba7

Please sign in to comment.