[ fix ] missing log option (#1411)

This commit is contained in:
Zoe Stafford 2021-05-13 20:23:31 +01:00 committed by GitHub
parent 7fe8c42116
commit 7e520994fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -42,6 +42,8 @@ knownTopics = [
("builtin.Natural.addTransform", "some documentation of this option"),
("builtin.NaturalToInteger", "some documentation of this option"),
("builtin.NaturalToInteger.addTransforms", "some documentation of this option"),
("builtin.IntegerToNatural", "some documentation of this option"),
("builtin.IntegerToNatural.addTransforms", "some documentation of this option"),
("compile.casetree", "some documentation of this option"),
("compiler.inline.eval", "some documentation of this option"),
("compiler.refc", "some documentation of this option"),

View File

@ -280,7 +280,7 @@ addIntegerToNat :
IntToNat ->
Core ()
addIntegerToNat fn iToN = do
log "builtin.NaturalToInteger.addTransforms" 10
log "builtin.IntegerToNatural.addTransforms" 10
$ "Add %builtin IntegerToNatural transform for " ++ show fn ++ "."
update Ctxt $ record
{ builtinTransforms.integerToNatFns $= insert fn iToN