Which comment is about correctness?
- This crashes on empty input
- I would rename this variable
- This line needs a blank line above it
What does a review ask about a diff?
- Who wrote it and when
- How many lines it adds
- Whether it works, breaks nearby code, and reads clearly
A naming preference must be fixed just like a crash.
Circle one: True False
A change passes its own tests yet breaks code elsewhere. What must the reviewer check?
- The callers outside the diff
- The spelling inside the diff
- The age of the diff
Which remark follows the questioning habit?
- Rename this at once.
- What happens when the input is empty?
- This is wrong.
Which comment still matters if the author disagrees about style?
- Use my favourite names.
- This breaks the caller that passes zero.
- Add more comments everywhere.
A twenty-line change renames two variables, fixes an empty-input crash, and alters a function every caller depends on. Which pair of comments still matters if the author disagrees about style?
- The crash fix and the caller impact
- The two renames
- One rename and a plea for shorter names
A reviewer demands a rename and ignores an empty-input crash. What went wrong?
- They checked the callers too soon
- They asked too many questions
- They put taste above behaviour