diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-05-20 18:34:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-20 18:34:14 -0700 |
commit | e600ddc555201f29576397d560aab5350456c650 (patch) | |
tree | 8eb7277ab5ea8c0616e24f69cb918f1837567736 /compiler | |
parent | 6969a468ceaab7384d7448bfd88e47a5b24c3a97 (diff) | |
download | Nim-e600ddc555201f29576397d560aab5350456c650.tar.gz |
fix comment from https://github.com/nim-lang/Nim/commit/e909486e5cde5a4a77cd6f21b42fc9ab38ec2ae6#r39287564 (#14412)
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/rodimpl.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rodimpl.nim b/compiler/rodimpl.nim index 417241930..52b4d1f85 100644 --- a/compiler/rodimpl.nim +++ b/compiler/rodimpl.nim @@ -916,8 +916,8 @@ proc loadNode*(g: ModuleGraph; module: PSym): PNode = replay(g, module, result) proc setupModuleCache*(g: ModuleGraph) = - ## historical note: there used to be a `rodfiles` dir with special tests - ## for incremental compilation via symbol files. This was likely replaced by ic. + # historical note: there used to be a `rodfiles` dir with special tests + # for incremental compilation via symbol files. This was likely replaced by ic. if g.config.symbolFiles == disabledSf: return g.recordStmt = recordStmt let dbfile = getNimcacheDir(g.config) / RelativeFile"rodfiles.db" |