diff options
author | Adam Chlipala <adam@chlipala.net> | 2013-07-17 10:40:13 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2013-07-17 10:40:13 -0400 |
commit | 493b842cd26c5658eb05535152762b2bceb9b04e (patch) | |
tree | d986aa94d4afb0b8832a9fc388ffaf32ff91112f /src | |
parent | e47fdcf75c4cbd96804697e8f25fca46dd11e9b6 (diff) |
Make that new error message text a bit more accurate
Diffstat (limited to 'src')
-rw-r--r-- | src/effectize.sml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effectize.sml b/src/effectize.sml index 31cbe9ba..35de86c3 100644 --- a/src/effectize.sml +++ b/src/effectize.sml @@ -161,7 +161,7 @@ fun effectize file = () else ErrorMsg.errorAt loc ("A handler (" ^ s - ^ ") accessible via GET could cause side effects; try accessing it only via forms or removing it from the signature of its containing module"); + ^ ") accessible via GET could cause side effects; try accessing it only via forms or removing it from the signature of the main program module"); ((DExport (Link, n, IM.inDomain (pushers, n)), #2 d), evs)) | DExport (Action _, n, _) => ((DExport (Action (if IM.inDomain (writers, n) then |