-
Notifications
You must be signed in to change notification settings - Fork 5
Handle array for with
option
#8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Handle array for with
option
#8
Conversation
98976a7
to
6e13771
Compare
6e13771
to
ea695c2
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sorry for late response.
The documentation of with
option (src/crinder.cr
L86) should also be fixed.
@@ -47,6 +47,18 @@ class NilableTodoRenderer < TodoRenderer | |||
remove updated | |||
end | |||
|
|||
record TodoSubtasked, name : String, subtasks : Array(Subtask) | |||
record Subtask, name : String |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I prefer moving these two record
s to L4, under record Todo
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think fixtures should be simple and focused to what's important.
ea695c2
to
52236d0
Compare
Hi ! Thanks for the review. About this documentation :
I need to change |
Yes |
@c910335 I've finished the documentation :) |
The
with
option should handle Arrays.Fix : #7