diff options
author | Audun Wilhelmsen <skyfex@gmail.com> | 2014-03-21 18:10:27 +0100 |
---|---|---|
committer | Audun Wilhelmsen <skyfex@gmail.com> | 2014-03-21 18:10:27 +0100 |
commit | 2a182f55aeb22149d72f7f3e2e0c96019b8dcd17 (patch) | |
tree | 2dd5b1b15250cf5f99f7e18e83dfaed8776fd012 /doc | |
parent | 1b423139e6b9997bdda97e32d1575df41f62cd0a (diff) | |
download | Nim-2a182f55aeb22149d72f7f3e2e0c96019b8dcd17.tar.gz |
Fixed typo in docs
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 08ed6f8d1..c4b08a942 100644 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -5393,7 +5393,7 @@ 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 +that the fields of an object are 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). |