From 35ec8bfc132f508601564c63fa9cb0310055c170 Mon Sep 17 00:00:00 2001 From: Mikael Pettersson Date: Sun, 10 Feb 2019 20:39:29 +0100 Subject: [PATCH] pdp10-stdio.c: fix typo and grammar --- lib/pdp10-stdio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pdp10-stdio.c b/lib/pdp10-stdio.c index 6a30b18..ddb82f9 100644 --- a/lib/pdp10-stdio.c +++ b/lib/pdp10-stdio.c @@ -1,6 +1,6 @@ /* * pdp10-stdio.c - * Copyright (C) 2013-2015 Mikael Pettersson + * Copyright (C) 2013-2019 Mikael Pettersson * * This file is part of pdp10-tools. * @@ -380,11 +380,11 @@ off_t pdp10_ftello(PDP10_FILE *pdp10fp) * example, 9/18/36-bit target integers are typically stored in 16/32/64-bit * host integers. * - * This means that I/O of aggreate structures must be avoided, and instead + * This means that I/O of aggregate structures must be avoided, and instead * be performed on each primitive data field individually, using explicit * marshalling code for multi-nonet primitive data types. * - * To detect mistakes in I/O, fread and fwrite only accepts strings (size == 1) + * To detect mistakes in I/O, fread and fwrite only accept strings (size == 1) * and single marshalled primitive data values (nmemb == 1, size == 1, 2, or 4). */ static int pdp10_freadwrite_bad_params(size_t size, size_t nmemb)