Skip to content
This repository was archived by the owner on Feb 10, 2025. It is now read-only.

Commit c0c5a97

Browse files
authoredJul 29, 2024
Fix some trivial doc comment lints (#110)
1 parent 28a6533 commit c0c5a97

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed
 

‎lib/src/stream_channel_controller.dart

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
// for details. All rights reserved. Use of this source code is governed by a
33
// BSD-style license that can be found in the LICENSE file.
44

5+
/// @docImport 'isolate_channel.dart';
6+
library;
7+
58
import 'dart:async';
69

710
import '../stream_channel.dart';
@@ -11,7 +14,7 @@ import '../stream_channel.dart';
1114
/// This exposes two connected [StreamChannel]s, [local] and [foreign]. The
1215
/// user's code should use [local] to emit and receive events. Then [foreign]
1316
/// can be returned for others to use. For example, here's a simplified version
14-
/// of the implementation of [new IsolateChannel]:
17+
/// of the implementation of [IsolateChannel.new]:
1518
///
1619
/// ```dart
1720
/// StreamChannel isolateChannel(ReceivePort receivePort, SendPort sendPort) {

0 commit comments

Comments
 (0)