diff options
author | Audun Wilhelmsen <skyfex@gmail.com> | 2014-03-20 23:47:50 +0100 |
---|---|---|
committer | Audun Wilhelmsen <skyfex@gmail.com> | 2014-03-20 23:47:50 +0100 |
commit | 1b423139e6b9997bdda97e32d1575df41f62cd0a (patch) | |
tree | 47746a174a48fc3b2e9312e8bd605f454f921e91 /doc/manual.txt | |
parent | b59fba584521a0a9d4fe97ee4a5d608ec19aedc4 (diff) | |
download | Nim-1b423139e6b9997bdda97e32d1575df41f62cd0a.tar.gz |
Fixed typo and line breaks in docs
Diffstat (limited to 'doc/manual.txt')
-rw-r--r-- | doc/manual.txt | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 9497e957d..08ed6f8d1 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -5392,9 +5392,14 @@ should scan unions conservatively. Packed pragma ------------- -The `packed`:idx: pragma can be applied to any ``object`` type. It ensures that the fields of an object is packed back-to-back in memory. It is useful to store packets or messages from/to network or hardware drivers, and for interoperability with C. Combining packed pragma with inheritance is not defined, and it should not be used with GC'ed memory (ref's). - -**Future directions**: Using GC'ed memory in packed pragma will result in compile-time error. Usage with inheretinence should be defined and documented. +The `packed`:idx: pragma can be applied to any ``object`` type. It ensures +that the fields of an object is packed back-to-back in memory. It is useful +to store packets or messages from/to network or hardware drivers, and for +interoperability with C. Combining packed pragma with inheritance is not +defined, and it should not be used with GC'ed memory (ref's). + +**Future directions**: Using GC'ed memory in packed pragma will result in +compile-time error. Usage with inheritance should be defined and documented. Unchecked pragma ---------------- |