Skip to content

Commit

Permalink
Fix some trivial doc comment lints (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Jul 29, 2024
1 parent 28a6533 commit c0c5a97
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/src/stream_channel_controller.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

/// @docImport 'isolate_channel.dart';
library;

import 'dart:async';

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

0 comments on commit c0c5a97

Please sign in to comment.