Skip to content

Commit 474131b

Browse files
committed
fix backticks
1 parent 0d38841 commit 474131b

File tree

1 file changed

+3
-1
lines changed
  • mug-guava/src/main/java/com/google/mu/safesql

1 file changed

+3
-1
lines changed

mug-guava/src/main/java/com/google/mu/safesql/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,9 @@ compile-time-safe SQL templating system that addresses structure injection head-
110110
SafeSql query = SafeSql.of(
111111
"SELECT `{columns}` FROM users WHERE name LIKE '%{keyword}%'",
112112
/* columns */ List.of("id", "email"), /* keyword */ "100%");
113-
113+
```
114+
115+
```java
114116
SafeSql query = SafeSql.of(
115117
"SELECT * FROM `{table}` WHERE status = {status}", table, status);
116118
```

0 commit comments

Comments
 (0)