From 49f1a5604c992ad57eb6903a73635fc2cb7287db Mon Sep 17 00:00:00 2001 From: Victor Eijkhout Date: Fri, 4 Oct 2024 10:05:43 -0500 Subject: [PATCH] Update sources/modules/compilation-model/separate-compilation.md Co-authored-by: Florian Sattler --- sources/modules/compilation-model/separate-compilation.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sources/modules/compilation-model/separate-compilation.md b/sources/modules/compilation-model/separate-compilation.md index 6e4087f..c89d3ce 100644 --- a/sources/modules/compilation-model/separate-compilation.md +++ b/sources/modules/compilation-model/separate-compilation.md @@ -50,9 +50,9 @@ _Max 5 items._ A student should be able to: -1. Split a single file program into main, one or more auxiliaries, and header files (or modules), all in one directory -2. Compile and link a program that is spread over multiple files (again, all in one directory), either on the commandline or with a build system. -3. Describe the functions of the various files involved: source, object, executable. +1. split a single file program into main, one or more auxiliaries, and header files (or modules), all in one directory +2. compile and link a program that is spread over multiple files (again, all in one directory), either on the commandline or with a build system. +3. describe the functions of the various files involved: source, object, executable. #### Points to cover