Skip to content

Commit

Permalink
Version 3.3.0-271.0.dev
Browse files Browse the repository at this point in the history
Merge 0c41476 into dev
  • Loading branch information
Dart CI committed Dec 29, 2023
2 parents 69ef0e9 + 0c41476 commit 4d83ab2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions sdk/lib/collection/linked_list.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ part of dart.collection;
///
/// Example:
/// ```dart
/// class EntryItem extends LinkedListEntry<EntryItem> {
/// final class EntryItem extends LinkedListEntry<EntryItem> {
/// final int id;
/// final String text;
/// EntryItem(this.id, this.text);
Expand All @@ -42,10 +42,10 @@ part of dart.collection;
/// }
/// }
///
/// void main(){
/// void main() {
/// final linkedList = LinkedList<EntryItem>();
/// linkedList.addAll(
/// [EntryItem(1, 'A'), EntryItem(2, 'B'), EntryItem(3, 'C')]);
/// linkedList
/// .addAll([EntryItem(1, 'A'), EntryItem(2, 'B'), EntryItem(3, 'C')]);
/// print(linkedList.first); // 1 : A
/// print(linkedList.last); // 3 : C
///
Expand Down
2 changes: 1 addition & 1 deletion tools/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ CHANNEL dev
MAJOR 3
MINOR 3
PATCH 0
PRERELEASE 270
PRERELEASE 271
PRERELEASE_PATCH 0

0 comments on commit 4d83ab2

Please sign in to comment.