Skip to content

Commit e6bd83d

Browse files
committed
Code review fixes #3
1 parent 954b631 commit e6bd83d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/src/client.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -142,9 +142,9 @@ abstract class Client {
142142
void close();
143143
}
144144

145-
/// Return the [Client] for the current [Zone], if one has been set.
145+
/// The [Client] for the current [Zone], if one has been set.
146146
///
147-
/// NOTE: This function is explicitly hidden from the public API.
147+
/// NOTE: This property is explicitly hidden from the public API.
148148
Client? get zoneClient {
149149
final client = Zone.current[#_clientToken];
150150
return client == null ? null : (client as Client Function())();
@@ -175,7 +175,7 @@ Client? get zoneClient {
175175
/// }
176176
/// ```
177177
///
178-
/// The [Client] returned by [clientFactory] influences functions (e.g. [get])
178+
/// The [Client] returned by [clientFactory] influences functions (e.g. `get`)
179179
/// and the [Client.new] factory.
180180
R runWithClient<R>(R Function() body, Client Function() clientFactory,
181181
{ZoneSpecification? zoneSpecification}) =>

0 commit comments

Comments
 (0)