Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldemarco committed Jul 24, 2019
1 parent 8e3f3bd commit 9e63f8a
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions auto_data/lib/src/annotations.dart
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,21 @@
part of auto_data;

class Data {
/**
* Mark a class for data generation
*/
/// Mark a class for data generation
const Data();

String toString() => "Data class";
}

/**
* Marks a class as [Data].
*/
/// Marks a class as [Data].
const Data data = const Data();

class Nullable {
/**
* Allow a field to be nullable
*/
/// Allow a field to be nullable
const Nullable();

String toString() => "Nullable class";
}

/**
* Marks a field as [Nullable].
*/
/// Marks a field as [Nullable].
const Nullable nullable = const Nullable();

0 comments on commit 9e63f8a

Please sign in to comment.