Jinoh Kang (@iamahuman) commented about dlls/kernel32/tests/file.c:
FindClose(hFind); } }
- ret = DeleteFileA(source);
- ok(ret, "DeleteFileA: error %ld\n", GetLastError()); ret = DeleteFileA(dest); ok(!ret, "DeleteFileA: error %ld\n", GetLastError());
- /* test renaming file to hardlink of itself and different case */
At first glance, this sounded like "test renaming file to hardlink of itself in same case as well as different case"
This sounds clear to others reading the code:
```suggestion:-0+0 /* test renaming file to hardlink of itself with different case */ ```