Skip to content

typo in code snippet: 2025-05-07-release-notes-3.7.0.md #1799

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 8, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _posts/2025-05-07-release-notes-3.7.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Named tuples are a convenient lightweight way to return multiple results from a
("London", 21),
("Rome", 37.0),
)
val average = measurements.map(_.value).sum / measurments.size
val average = measurements.map(_.value).sum / measurements.size
```

What's more, this feature also enhances existing features. For example, it is now possible to match on a subset of case class fields by name. By doing so you no longer need to specify a long list of wildcard selectors for each field of a large case class.
Expand Down