diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2022-08-28 05:17:59 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2022-08-29 09:28:40 -0700 |
commit | 3871bdb7e40cc9a91d2cce58e2f5c49313521dc4 (patch) | |
tree | d7f1f0fd7bb8270a1d249a8a3d20ff9452e93d74 /builtin/commit-graph.c | |
parent | 87ed97167a1b1bce41e0380ec6a9507876015e89 (diff) |
t4301: emit blank line in more idiomatic fashion
The unusual use of:
printf "\\n" >>file &&
may give readers pause, making them wonder why this form was chosen over
the more typical:
printf "\n" >>file &&
However, even that may give pause since it is a somewhat unusual and
long-winded way of saying:
echo >>file &&
Therefore, replace `printf` with the more idiomatic `echo`, with the
hope of eliminating a possible stumbling block for those reading the
code.
Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit-graph.c')
0 files changed, 0 insertions, 0 deletions