Skip to content

Commit 83a104f

Browse files
committed
Change code-formatted notes to italic emphasis
1 parent 4de0c36 commit 83a104f

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

docs/en/orm/query-builder.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -346,36 +346,36 @@ You can access existing wrappers for several SQL functions through `SelectQuery:
346346
Generate a random value between 0 and 1 via SQL.
347347

348348
`sum()`
349-
Calculate a sum. `Assumes arguments are literal values.`
349+
Calculate a sum. *Assumes arguments are literal values.*
350350

351351
`avg()`
352-
Calculate an average. `Assumes arguments are literal values.`
352+
Calculate an average. *Assumes arguments are literal values.*
353353

354354
`min()`
355-
Calculate the min of a column. `Assumes arguments are literal values.`
355+
Calculate the min of a column. *Assumes arguments are literal values.*
356356

357357
`max()`
358-
Calculate the max of a column. `Assumes arguments are literal values.`
358+
Calculate the max of a column. *Assumes arguments are literal values.*
359359

360360
`count()`
361-
Calculate the count. `Assumes arguments are literal values.`
361+
Calculate the count. *Assumes arguments are literal values.*
362362

363363
`stringAgg()`
364364
Aggregate string values using a separator. Translates to `STRING_AGG()`,
365365
`GROUP_CONCAT()`, or `LISTAGG()` depending on the database driver.
366-
`Assumes the first argument is a literal value.`
366+
*Assumes the first argument is a literal value.*
367367

368368
`cast()`
369369
Convert a field or expression from one data type to another.
370370

371371
`concat()`
372-
Concatenate two values together. `Assumes arguments are bound parameters.`
372+
Concatenate two values together. *Assumes arguments are bound parameters.*
373373

374374
`coalesce()`
375-
Coalesce values. `Assumes arguments are bound parameters.`
375+
Coalesce values. *Assumes arguments are bound parameters.*
376376

377377
`dateDiff()`
378-
Get the difference between two dates/times. `Assumes arguments are bound parameters.`
378+
Get the difference between two dates/times. *Assumes arguments are bound parameters.*
379379

380380
`now()`
381381
Defaults to returning date and time, but accepts 'time' or 'date' to return only

0 commit comments

Comments
 (0)