-
-
Notifications
You must be signed in to change notification settings - Fork 219
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
docs: fix instructions of lasagna master #852
docs: fix instructions of lasagna master #852
Conversation
The instructions of Task 3 have been clarified.
Co-authored-by: Christian Willner <[email protected]>
Can we proceed merging the PR @vaeng? |
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.
Fix: some small changes
Write a function `addSecretIngredient` that accepts two `string` vectors of ingredients as parameters. | ||
The first parameter is the list your friend sent you, the second is the ingredient list of your own recipe. | ||
Write a function `addSecretIngredient` that accepts two `vector of strings` as parameters. | ||
The first parameter is a _reference_ to the ingredients of your own recipe, and the second _vector_ of strings has the ingredients your friend sent you. |
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.
The first parameter is a _reference_ to the ingredients of your own recipe, and the second _vector_ of strings has the ingredients your friend sent you. | |
The first parameter is a _reference_ to the ingredients of your own recipe, and the second has the ingredients your friend sent you. |
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.
(Partially just suggesting this to kick the CI if it's accepted, but also I don't think we need this bit :))
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.
CI kick did not work :(
Do you have any ideas @ErikSchierboom |
I've closed and reopened, that often works |
Thanks @ErikSchierboom |
Thanks @vaeng! |
* Update instructions.md The instructions of Task 3 have been clarified. * Correcting after first revision * Update exercises/concept/lasagna-master/.docs/instructions.md Co-authored-by: Christian Willner <[email protected]> * Adding the possibility of using a reference also for the second parameter --------- Co-authored-by: Christian Willner <[email protected]>
The aim of this PR is to try to clarify the instructions of Task 3.