From 74b8a7d4e8a00f6982eb5f38541260df457eaa91 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Wed, 6 Feb 2013 17:47:18 -0800 Subject: [PATCH] Fixed typo in help text --- PDP11/pdp11_pt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PDP11/pdp11_pt.c b/PDP11/pdp11_pt.c index 5bcc5606..50a22508 100644 --- a/PDP11/pdp11_pt.c +++ b/PDP11/pdp11_pt.c @@ -383,9 +383,9 @@ return detach_unit (uptr); t_stat ptr_help (FILE *st, DEVICE *dptr, UNIT *uptr, int32 flag, char *cptr) { fprintf (st, "PC11 Paper Tape Reader (PTP)\n\n"); -fprintf (st, "The paper tape punch (PTP) writes data to a disk file. The POS register\n"); -fprintf (st, "specifies the number of the next data item to be written. Thus, by changing\n"); -fprintf (st, "POS, the user can backspace or advance the punch.\n"); +fprintf (st, "The paper tape reader (PTP) reads data from a disk file. The POS register\n"); +fprintf (st, "specifies the number of the next data item to be read. Thus, by changing\n"); +fprintf (st, "POS, the user can backspace or advance the reader.\n"); fprint_set_help (st, dptr); fprint_show_help (st, dptr); fprint_reg_help (st, dptr);