dspinellis / dspinellis/effective-debugging
Page 122, Item 46, line 9 from bottom
Open
- Dominant language
- Java
- Stars
- 53
- Forks
- 19
- PR merge metrics
- No merged PRs in 30d
Description
```
p = s.client(q, r).booking(x).period(y, checkout(z)).duration();
```
should be read as
```
d = s.client(q, r).booking(x).period(y, checkout(z)).duration();
```
This makes the assignment consistent with the refactored code that follows it.
Thanks to: Toshiaki Kurokawa
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.