Skip to content

Commit 1178e67

Browse files
committed
align code comment
1 parent bffaf61 commit 1178e67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • user_guide_src/source/database/query_builder
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
$builder->like('title', 'match', 'none'); // Produces: WHERE `title` LIKE 'match' ESCAPE '!'
3+
$builder->like('title', 'match', 'none'); // Produces: WHERE `title` LIKE 'match' ESCAPE '!'
44
$builder->like('title', 'match', 'before'); // Produces: WHERE `title` LIKE '%match' ESCAPE '!'
55
$builder->like('title', 'match', 'after'); // Produces: WHERE `title` LIKE 'match%' ESCAPE '!'
66
$builder->like('title', 'match', 'both'); // Produces: WHERE `title` LIKE '%match%' ESCAPE '!'

0 commit comments

Comments
 (0)