From 70eb8071d3d265c786f401439d72a287add28535 Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Wed, 17 May 2023 20:15:11 -0700 Subject: [PATCH] [rfw] Fix a typo in the API documentation (#4023) --- packages/rfw/CHANGELOG.md | 15 ++++++++------- packages/rfw/lib/src/dart/text.dart | 1 - packages/rfw/pubspec.yaml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/packages/rfw/CHANGELOG.md b/packages/rfw/CHANGELOG.md index ff381c2166192..2a6e3a4e12bd5 100644 --- a/packages/rfw/CHANGELOG.md +++ b/packages/rfw/CHANGELOG.md @@ -1,7 +1,8 @@ -## NEXT +## 1.0.9 * Updates minimum supported SDK version to Flutter 3.3/Dart 2.18. * Aligns Dart and Flutter SDK constraints. +* Fixes a typo in the API documentation that broke the formatting. ## 1.0.8 @@ -10,7 +11,7 @@ ## 1.0.7 -* Update README. +* Updates README. ## 1.0.6 @@ -35,15 +36,15 @@ ## 1.0.2 -* Mention FractionallySizedBox in documentation. +* Mentions FractionallySizedBox in documentation. ## 1.0.1 -* Improve documentation. -* Provide constants for the file signatures. +* Improves documentation. +* Provides constants for the file signatures. * Minor efficiency improvements. -* Fix `unnecessary_import` lint errors. -* Add one more core widget, FractionallySizedBox. +* Fixes `unnecessary_import` lint errors. +* Adds one more core widget, FractionallySizedBox. ## 1.0.0 diff --git a/packages/rfw/lib/src/dart/text.dart b/packages/rfw/lib/src/dart/text.dart index edd490d31bef2..9d089b2a8508b 100644 --- a/packages/rfw/lib/src/dart/text.dart +++ b/packages/rfw/lib/src/dart/text.dart @@ -415,7 +415,6 @@ DynamicMap parseDataFile(String file) { /// The syntax for a loop uses the following form: /// /// ...for ident in list: template -/// ``` /// /// ...where _ident_ is the identifier to bind to each value in the list, _list_ /// is some value that evaluates to a list, and _template_ is a value that is to diff --git a/packages/rfw/pubspec.yaml b/packages/rfw/pubspec.yaml index c3468405d5891..5db6474642d1a 100644 --- a/packages/rfw/pubspec.yaml +++ b/packages/rfw/pubspec.yaml @@ -2,7 +2,7 @@ name: rfw description: "Remote Flutter widgets: a library for rendering declarative widget description files at runtime." repository: https://github.com/flutter/packages/tree/main/packages/rfw issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+rfw%22 -version: 1.0.8 +version: 1.0.9 environment: sdk: ">=2.18.0 <4.0.0"