Skip to content

Commit dd79ce9

Browse files
committed
update
1 parent c120606 commit dd79ce9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dart/lib/src/scope.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -268,15 +268,15 @@ class Scope {
268268
}
269269

270270
/// Sets an extra to the Scope
271-
@Deprecated('Additional Data is deprecated in favor of structured Contexts and should be avoided when possible')
271+
@Deprecated('Additional data is deprecated in favor of structured Contexts and should be avoided when possible')
272272
Future<void> setExtra(String key, dynamic value) async {
273273
_setExtraSync(key, value);
274274
await _callScopeObservers(
275275
(scopeObserver) async => await scopeObserver.setExtra(key, value));
276276
}
277277

278278
/// Removes an extra from the Scope
279-
@Deprecated('Additional Data is deprecated in favor of structured Contexts and should be avoided when possible')
279+
@Deprecated('Additional data is deprecated in favor of structured Contexts and should be avoided when possible')
280280
Future<void> removeExtra(String key) async {
281281
_extra.remove(key);
282282
await _callScopeObservers(

0 commit comments

Comments
 (0)