diff options
Diffstat (limited to 'src/boot/fe/cexp.ml')
| -rw-r--r-- | src/boot/fe/cexp.ml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot/fe/cexp.ml b/src/boot/fe/cexp.ml index 6dffdb96..bf5e32b8 100644 --- a/src/boot/fe/cexp.ml +++ b/src/boot/fe/cexp.ml @@ -325,7 +325,7 @@ let unexpected_val (expected:string) (v:pval) = | PVAL_num i -> "num " ^ (Int64.to_string i) | PVAL_bool b -> if b then "bool true" else "bool false" in - (* FIXME: proper error reporting, please. *) + (* FIXME (issue #70): proper error reporting, please. *) bug () "expected %s, got %s" expected got ;; |