We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd320cc commit aa33f37Copy full SHA for aa33f37
README.md
@@ -11,7 +11,7 @@ A small Java 8+ utilities library ([javadoc](http://google.github.io/mug/apidocs
11
→ `Substring.between("(", ")").from("call(foo)") → "foo"`
12
- ✅ [`StringFormat`](https://github.com/google/mug/wiki/StringFormat-Explained) – compile-time-safe bidirectional formatting
13
→ `new StringFormat("/home/{user}/{year}-{month}-{day}").parse(filePath, (user, year, month, day) -> ...)`
14
-- ✅ [`SafeSql`](./mug-guava/src/main/java/com/google/mu/safesql/README.md) – SQL string template (**0 injection risk**)
+- ✅ [`SafeSql`](./mug-guava/src/main/java/com/google/mu/safesql/README.md) – SQL template (***0 injection risk***)
15
→ ```SafeSql.of("select id, `{col}` from Users where id = {id}", col, id)```
16
- ✅ [`DateTimeFormats`](./mug/src/main/java/com/google/mu/time/README.md) – parse datetimes by example
17
→ `DateTimeFormatter format = formatOf("2024-03-14 10:00:00.123 America/New_York")`
0 commit comments