[changelog/ffi] Document dart:ffi changes for D26 - tweaks

Follow up of https://dart-review.googlesource.com/c/sdk/+/122149

Change-Id: I74f93e0a17a4a648da742cd2e62a424cfc1eb3db
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/122621
Auto-Submit: Daco Harkes <dacoharkes@google.com>
Reviewed-by: Michael Thomsen <mit@google.com>
Commit-Queue: Michael Thomsen <mit@google.com>
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e7cdf68..d754ceb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -82,7 +82,12 @@
 * Added optional `parent` parameter to `TimelineTask` constructor to allow for
   linking of asynchronous timeline events in the DevTools timeline view.
 
-### `dart:ffi`
+### Dart VM
+
+* Added a new tool for AOT compiling Dart programs to native, self-contained
+executables. See https://dart.dev/tools/dart2native for additional details.
+
+### Foreign Function Interface (`dart:ffi`)
 
 *   **Breaking change**: The API now makes use of static extension members.
     Static extension members enable the `dart:ffi` API to be more precise with
@@ -100,12 +105,7 @@
     instead.
 *   Faster memory load and stores.
 *   The dartanalyzer (commandline and IDEs) now reports `dart:ffi` static errors.
-*   Callbacks are now supported in AOT (ahead-of-time).
-
-### Dart VM
-
-* Added a new tool for AOT compiling Dart programs to native, self-contained
-executables. See https://dart.dev/tools/dart2native for additional details.
+*   Callbacks are now supported in AOT (ahead-of-time) compiled code.
 
 ### Dart for the Web