From 050b75d40f05c9e75c5d4b0b99edef82af0f984c Mon Sep 17 00:00:00 2001 From: crunchyfrog <49813441+truecrunchyfrog@users.noreply.github.com> Date: Sun, 8 Sep 2024 00:58:06 +0200 Subject: [PATCH] Update string-interpolation.md Tiny grammatic fixes to a sentence. --- _overviews/scala3-book/string-interpolation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_overviews/scala3-book/string-interpolation.md b/_overviews/scala3-book/string-interpolation.md index 2e47a872b1..e1c4f10054 100644 --- a/_overviews/scala3-book/string-interpolation.md +++ b/_overviews/scala3-book/string-interpolation.md @@ -34,7 +34,7 @@ The `s` that you place before the string is just one possible interpolator that provides. Scala provides three string interpolation methods out of the box: `s`, `f` and `raw`. -Further, a string interpolator is a just special method so it is possible to define your +Further, a string interpolator is just a special method, so it is possible to define your own. For instance, some database libraries define a `sql` interpolator that returns a database query.