Skip to content

Commit 07fe56b

Browse files
authored
Merge pull request #2173 from Husenap/patch-1
Fix small typo
2 parents 55c669e + 027a863 commit 07fe56b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

_overviews/scala3-book/taste-vars-data-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ println(s"x.abs = ${x.abs}") // prints "x.abs = 1"
186186

187187
The `s` that you place before the string is just one possible interpolator.
188188
If you use an `f` instead of an `s`, you can use `printf`-style formatting syntax in the string.
189-
Furthermore, a string interpolator is a just special method and it is possible to define your own.
189+
Furthermore, a string interpolator is just a special method and it is possible to define your own.
190190
For instance, some database libraries define the very powerful `sql` interpolator.
191191

192192
#### Multiline strings

0 commit comments

Comments
 (0)