From 01dc45ef33d11ed4ad8c0641dfa7b4113266efc4 Mon Sep 17 00:00:00 2001 From: Max Desiatov Date: Sat, 20 Dec 2025 09:46:03 +0000 Subject: [PATCH] Fix capitalization 2025 updates blog post [Per the spec](https://webassembly.github.io/spec/core/intro/introduction.html#wasm), Wasm is not an acronym. Correct capitalization is "Wasm" not "WASM". --- _posts/2025-12-19-whats-new-in-swift-december-2025.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_posts/2025-12-19-whats-new-in-swift-december-2025.md b/_posts/2025-12-19-whats-new-in-swift-december-2025.md index a9e8d4dae..0b86cfe46 100644 --- a/_posts/2025-12-19-whats-new-in-swift-december-2025.md +++ b/_posts/2025-12-19-whats-new-in-swift-december-2025.md @@ -62,7 +62,7 @@ In case you missed it, here are several recent blog posts you'll want to check o As this month's guest contribution shared, Swift continues to expand to new platforms. Here are a few recent examples from the community: * [Using Swift SDKs with Raspberry Pi](https://xtremekforever.substack.com/p/using-swift-sdks-with-raspberry-pis) - Did you know Swift can run on a Raspberry Pi? This blog post does a deep dive, it's time to open your terminal and follow along! -* [Swift for WASM December 2025 updates](https://forums.swift.org/t/swift-for-wasm-december-2025-updates/83778) - An update on progress related to Swift for WASM. In December the community also had an online meetup including talks. +* [Swift for Wasm December 2025 updates](https://forums.swift.org/t/swift-for-wasm-december-2025-updates/83778) - An update on progress related to Swift for Wasm. In December the community also had an online meetup including talks. * [AWS blog post about AWS Lambda runtime](https://aws.amazon.com/blogs/opensource/the-swift-aws-lambda-runtime-moves-to-awslabs/) - The Swift AWS Lambda Runtime moved to the official AWS Labs GitHub organization, delivering a vendor-supported approach to running Swift on AWS Lambda. * [Swift on a Pebble watch](https://x.com/lucaslovexoxo/status/1987516793372524727) - A fun example of how a developer used Swift's embedded support to build a "hello world" example on a 10-year-old Pebble Time Round watch. @@ -76,4 +76,4 @@ The Swift project adds new language features to the language through the [Swift * [SE-0497](https://github.com/swiftlang/swift-evolution/blob/main/proposals/0497-definition-visibility.md) Controlling function definition visibility in clients - The `@inlinable` attribute in Swift allows function definitions to be visible to callers, enabling optimizations like specialization and inlining. This proposal introduces explicit control over whether a function generates a callable symbol and makes its definition available for optimization purposes. * [SE-0493](https://github.com/swiftlang/swift-evolution/blob/main/proposals/0493-defer-async.md) Support async calls in defer bodies - Swift's defer statements provide scope-based cleanup but currently cannot perform asynchronous work, forcing developers to either manually insert cleanup on every exit path or spawn detached tasks. This proposal allows await calls within defer bodies when the enclosing context is async, with the defer statements implicitly awaited at scope exit to ensure proper cleanup completion. -*Editor Note: With this update, we’re going to take a break from the blog for the next couple of weeks. Wishing everyone a restful end to 2025!* \ No newline at end of file +*Editor Note: With this update, we’re going to take a break from the blog for the next couple of weeks. Wishing everyone a restful end to 2025!*