From 1dcf5ac82fc36368e0ab0343fb35ba318b99391a Mon Sep 17 00:00:00 2001 From: Christopher Arndt Date: Thu, 23 May 2024 18:15:52 +0200 Subject: [PATCH] Minor doc comment fixes Signed-off-by: Christopher Arndt --- src/nymph/atom.nim | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/nymph/atom.nim b/src/nymph/atom.nim index fd4e002..2944711 100644 --- a/src/nymph/atom.nim +++ b/src/nymph/atom.nim @@ -163,18 +163,19 @@ type ## ## The body of an AtomSequence (a sequence of events). ## - ## The unit field is either a Urid that described an appropriate time stamp - ## type, or may be 0 where a default stamp is known. For - ## lv2Descriptor.run(), the default stamp is audio frames. + ## The unit field is either a Urid that describes an appropriate time stamp + ## type, or may be 0 where a default stamp type is known. For + ## lv2Descriptor.run(), the default stamp type is audio frames. ## ## The contents of a sequence is a series of AtomEvent, each aligned ## to 64-bits, for example: - ##
+    ## 
+    ## ```
     ## | Event 1 (size 6)                              | Event 2
     ## |       |       |       |       |       |       |       |       |
     ## | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
     ## |FRAMES         |SIZE   |TYPE   |DATADATADATAPAD|FRAMES         |...
-    ## 
+ ## ``` ## AtomSequenceBody* {.bycopy.} = object unit*: Urid ## Urid of unit of event time stamps.