Skip to content

Commit

Permalink
docs: fix macros in doc comments (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
blaugold committed Nov 16, 2021
1 parent bc83e6a commit 9023258
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions packages/cbl/lib/src/document/dictionary.dart
Expand Up @@ -68,17 +68,17 @@ abstract class DictionaryInterface implements DictionaryFragment {

/// Returns the value for the given [key] as a [Blob].
///
/// {@macro cbl.DictionaryInterface.typedNullableGetter
/// {@macro cbl.DictionaryInterface.typedNullableGetter}
Blob? blob(String key);

/// Returns the value for the given [key] as an [Array].
///
/// {@macro cbl.DictionaryInterface.typedNullableGetter
/// {@macro cbl.DictionaryInterface.typedNullableGetter}
Array? array(String key);

/// Returns the value for the given [key] as a [Dictionary].
///
/// {@macro cbl.DictionaryInterface.typedNullableGetter
/// {@macro cbl.DictionaryInterface.typedNullableGetter}
Dictionary? dictionary(String key);

/// Returns whether an entry with the given [key] exists in this dictionary.
Expand Down Expand Up @@ -150,13 +150,13 @@ abstract class MutableDictionaryInterface

/// Returns the value for the given [key] as an [MutableArray].
///
/// {@macro cbl.DictionaryInterface.typedNullableGetter
/// {@macro cbl.DictionaryInterface.typedNullableGetter}
@override
MutableArray? array(String key);

/// Returns the value for the given [key] as a [MutableDictionary].
///
/// {@macro cbl.DictionaryInterface.typedNullableGetter
/// {@macro cbl.DictionaryInterface.typedNullableGetter}
@override
MutableDictionary? dictionary(String key);
}
Expand Down
2 changes: 1 addition & 1 deletion packages/cbl/lib/src/query/parameters.dart
Expand Up @@ -44,7 +44,7 @@ abstract class Parameters {
/// Set an integer number to the query parameter referenced by the given
/// [name].
///
/// {@macro cbl.Parameters.parameterDefinition};
/// {@macro cbl.Parameters.parameterDefinition}
void setInteger(int? value, {required String name});

/// Set a floating point number to the query parameter referenced by the given
Expand Down

0 comments on commit 9023258

Please sign in to comment.