diff --git a/README.md b/README.md index 6b5f20d140bdf5b865f721a486a79cfc2c0cf96c..14659c0c04dbc738ef81fbdfaccfa0b1ea7c37ed 100644 --- a/README.md +++ b/README.md @@ -198,10 +198,12 @@ relevant programs, notably "ugen" (which is just a tilde object; see d_ugen.c.) 1.5. Spacing. Tabs are 8 spaces; indentation is 4 spaces. Indenting curly brackets are by themselves on their own lines, as in: - if (x) - { - x = 0; - } +```c +if (x) +{ + x = 0; +} +``` Lines should fit within 80 spaces.