isar icon indicating copy to clipboard operation
isar copied to clipboard

Error in quickstart example

Open dalewking opened this issue 3 years ago • 0 comments

The quick start example (https://github.com/isar/isar#2-annotate-a-collection) contains an error and if you cut and paste the code it doesn't work.

The status property looks like this:

  @enumerated
  Status status = Status.pending;

However pending is not a defined value for Status:

enum Status {
  draft,
  sending,
  sent,
}

I think you should change pending to draft to make the example valid.

dalewking avatar Oct 08 '22 16:10 dalewking