Skip to content

Commit 05ddca0

Browse files
committed
Doc update
1 parent b79efa2 commit 05ddca0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/src/model.dart

+4-4
Original file line numberDiff line numberDiff line change
@@ -3208,7 +3208,7 @@ abstract class ModelElement extends Nameable
32083208
}
32093209
}
32103210

3211-
/// A ModelElement for a FunctionElement that isn't part of a type definition.
3211+
/// A [ModelElement] for a [FunctionElement] that isn't part of a type definition.
32123212
class ModelFunction extends ModelFunctionTyped {
32133213
ModelFunction(FunctionElement element, Library library)
32143214
: super(element, library);
@@ -3229,12 +3229,12 @@ class ModelFunction extends ModelFunctionTyped {
32293229
FunctionElement get _func => (element as FunctionElement);
32303230
}
32313231

3232-
/// A [ModelElement] for a [GenericModelFunctionElement] that is not an
3232+
/// A [ModelElement] for a [GenericModelFunctionElement] that is an
32333233
/// explicit typedef.
32343234
///
32353235
/// Distinct from ModelFunctionTypedef in that it doesn't
32363236
/// have a name, but we document it as "Function" to match how these are
3237-
/// written in method declarations.
3237+
/// written in declarations.
32383238
class ModelFunctionAnonymous extends ModelFunctionTyped {
32393239
ModelFunctionAnonymous(FunctionTypedElement element, Library library)
32403240
: super(element, library) {}
@@ -3246,7 +3246,7 @@ class ModelFunctionAnonymous extends ModelFunctionTyped {
32463246
bool get isPublic => false;
32473247
}
32483248

3249-
/// A ModelElement for a GenericModelFunctionElement that may be part of an
3249+
/// A [ModelElement] for a [GenericModelFunctionElement] that is part of an
32503250
/// explicit typedef.
32513251
class ModelFunctionTypedef extends ModelFunctionTyped {
32523252
ModelFunctionTypedef(FunctionTypedElement element, Library library)

0 commit comments

Comments
 (0)