/usr/share/fish/man/man1/exit.1 is in fish-common 2.4.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | .TH "exit" 1 "Sun Dec 11 2016" "Version 2.4.0" "fish" \" -*- nroff -*-
.ad l
.nh
.SH NAME
\fBexit\fP -- exit the shell
.PP
.SS "Synopsis"
.PP
.nf
\fBexit\fP [STATUS]
.fi
.PP
.SS "Description"
\fCexit\fP causes fish to exit\&. If \fCSTATUS\fP is supplied, it will be converted to an integer and used as the exit code\&. Otherwise, the exit code will be that of the last command executed\&.
.PP
If exit is called while sourcing a file (using the \fCsource\fP builtin) the rest of the file will be skipped, but the shell itself will not exit\&.
|