Merge branch 'hk/typofix' into seen

Various spelling mistakes in comments and test descriptions have
been corrected.

* hk/typofix:
  versioncmp: fix typo in versioncmp.c, t/t0022-crlf-rename.sh
seen
Junio C Hamano 2026-08-31 13:53:31 -07:00
commit d66fd37ebf
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh


test_description='ignore CR in CRLF sequence while computing similiarity' test_description='ignore CR in CRLF sequence while computing similarity'


. ./test-lib.sh . ./test-lib.sh



View File

@ -15,7 +15,7 @@


/* /*
* states: S_N: normal, S_I: comparing integral part, S_F: comparing * states: S_N: normal, S_I: comparing integral part, S_F: comparing
* fractionnal parts, S_Z: idem but with leading Zeroes only * fractional parts, S_Z: idem but with leading Zeroes only
*/ */
#define S_N 0x0 #define S_N 0x0
#define S_I 0x3 #define S_I 0x3