Skip to content

Commit 4c54aee

Browse files
committed
fix doc comments
1 parent 44497aa commit 4c54aee

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'client_base.dart';
22

3-
/// Implemented in `browser_client.dart` and `io_client.dart`.
3+
/// Implemented in `client_browser.dart` and `client_io.dart`.
44
ClientBase createClient({required String endPoint, required bool selfSigned}) =>
55
throw UnsupportedError(
66
'Cannot create a client without dart:html or dart:io.');
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import 'realtime_base.dart';
22
import 'client.dart';
33

4-
/// Implemented in `browser_client.dart` and `io_client.dart`.
4+
/// Implemented in `realtime_browser.dart` and `realtime_io.dart`.
55
RealtimeBase createRealtime(Client client) => throw UnsupportedError(
66
'Cannot create a client without dart:html or dart:io.');

0 commit comments

Comments
 (0)