diff --git a/_overviews/scala3-book/scala-for-python-devs.md b/_overviews/scala3-book/scala-for-python-devs.md index 77fb3c5881..1e8bab8dae 100644 --- a/_overviews/scala3-book/scala-for-python-devs.md +++ b/_overviews/scala3-book/scala-for-python-devs.md @@ -1078,7 +1078,7 @@ Those lists are used in the following table, that shows how to apply mapping and - f = lambda x: x if x > 1 else 1 + f = lambda x: x > 1
x = filter(f, numbers)