File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -142,9 +142,9 @@ abstract class Client {
142
142
void close ();
143
143
}
144
144
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.
146
146
///
147
- /// NOTE: This function is explicitly hidden from the public API.
147
+ /// NOTE: This property is explicitly hidden from the public API.
148
148
Client ? get zoneClient {
149
149
final client = Zone .current[#_clientToken];
150
150
return client == null ? null : (client as Client Function ())();
@@ -175,7 +175,7 @@ Client? get zoneClient {
175
175
/// }
176
176
/// ```
177
177
///
178
- /// The [Client] returned by [clientFactory] influences functions (e.g. [ get] )
178
+ /// The [Client] returned by [clientFactory] influences functions (e.g. ` get` )
179
179
/// and the [Client.new] factory.
180
180
R runWithClient <R >(R Function () body, Client Function () clientFactory,
181
181
{ZoneSpecification ? zoneSpecification}) =>
You can’t perform that action at this time.
0 commit comments