remove extra space

This commit is contained in:
cd rubin 2024-10-29 14:50:55 +00:00
parent 12b6400a50
commit cff1a526e8

View file

@ -110,7 +110,6 @@ contents of an APE file at the special '/zip' path. So your code is now
able to do the following: able to do the following:
```c ```c
if (access( "/zip/support_file.txt", F_OK) == 0) { if (access( "/zip/support_file.txt", F_OK) == 0) {
fprintf(stderr, "/zip/support_file.txt FOUND and can be used as an asset\n"); fprintf(stderr, "/zip/support_file.txt FOUND and can be used as an asset\n");
} }