Typos and spelling fixes.

Submitted by:	charnier
This commit is contained in:
Paul Saab 2000-07-24 20:35:19 +00:00
parent 8ad08d33c1
commit 176e822873
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=63812
2 changed files with 9 additions and 6 deletions

View File

@ -32,15 +32,15 @@
.Nd synchronize a file's in-core state with that on disk
.Sh SYNOPSIS
.Nm fsync
.Ar file ...
.Ar
.Sh DESCRIPTION
.Nm Fsync
causes all modified data and meta-data of
a file to be written to a permanent storage device.
.Pp
.Nm Fync
.Nm Fsync
utilizes the
.Xr fync 2
.Xr fsync 2
function call.
.Sh SEE ALSO
.Xr fsync 2 ,

View File

@ -22,10 +22,13 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* $FreeBSD$
*/
#ifndef lint
static const char rcsid[] =
"$FreeBSD$";
#endif /* not lint */
#include <err.h>
#include <fcntl.h>
#include <stdio.h>
@ -57,6 +60,6 @@ main(int argc, char *argv[])
void
usage()
{
fprintf(stderr, "usaged: fsync file ...\n");
fprintf(stderr, "usage: fsync file ...\n");
exit(EX_USAGE);
}