]> git.tuebingen.mpg.de Git - aple.git/commitdiff
Unix_Concepts: Only mark up I/O operations as code and not comma master
authorPaul Menzel <pmenzel@molgen.mpg.de>
Wed, 24 Apr 2024 05:57:01 +0000 (07:57 +0200)
committerAndre Noll <maan@tuebingen.mpg.de>
Wed, 24 Apr 2024 11:59:17 +0000 (13:59 +0200)
Currently, the spacing is a little off, because the comma is also marked
up as code. So only mark up the I/O operations.

Signed-off-by: Andre Noll <maan@tuebingen.mpg.de>
Unix_Concepts.m4

index 7f0b5d8b13f55ba701925ed09eeb9f6c417028d3..fb3a122fcda0136dbebdd16b93646c681ee1be43 100644 (file)
@@ -557,8 +557,8 @@ EXERCISES()
 HOMEWORK(«
 
 Think about printers, sound cards, or displays as a file. Specifically,
-describe what <code>open, read</code>, and <code>write</code> should
-mean for these devices.
+describe what <code>open</code>, <code>read</code>, and <code>write</code>
+should mean for these devices.
 
 », «
 
@@ -570,9 +570,10 @@ printers could return the number of paper trays, the amount of toner
 left etc. Writing to the file descriptor would cause output on the
 device. This would mean to print the text that is written, play the
 audio samples, or show the given text on the display. The point to
-take away is that the <code>open, read, write</code> interface is a
-generic concept that works for different kinds of devices, not only
-for storing data in a file on a hard disk.
+take away is that the <code>open</code>, <code>read</code>,
+<code>write</code> interface is a generic concept that works for
+different kinds of devices, not only for storing data in a file on a
+hard disk.
 
 »)