diff options
author | David Terei <davidterei@gmail.com> | 2011-07-06 01:17:12 -0700 |
---|---|---|
committer | David Terei <davidterei@gmail.com> | 2011-07-06 01:17:12 -0700 |
commit | 45de2b4e312d41ca0127a04596f18c3c587b5670 (patch) | |
tree | a07d152f0879fa59890f67cc40939b08866abd24 /docs/users_guide/safe_haskell.xml | |
parent | 5505fbb784956377b5c57d1e478a4cbb190c6567 (diff) | |
download | haskell-45de2b4e312d41ca0127a04596f18c3c587b5670.tar.gz |
Fix typo in Safe Haskell doc
Diffstat (limited to 'docs/users_guide/safe_haskell.xml')
-rw-r--r-- | docs/users_guide/safe_haskell.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/users_guide/safe_haskell.xml b/docs/users_guide/safe_haskell.xml index 739558cf5a..3234843cb4 100644 --- a/docs/users_guide/safe_haskell.xml +++ b/docs/users_guide/safe_haskell.xml @@ -43,7 +43,7 @@ <listitem><emphasis>Module boundary control.</emphasis> Haskell code compiled using the Safe language is guaranteed to only access symbols that are publicly available to it through other modules - export lists. An import part of this is that safe compiled code + export lists. An important part of this is that safe compiled code is not able to examine or create data values using data constructors that the module cannot import. If a module M establishes some invariants through careful use of its export list then code |