summaryrefslogtreecommitdiffstats
path: root/generator/pr.mli
Commit message (Collapse)AuthorAgeFilesLines
* generator: Remove generated and unused files from previous runs of the ↵Richard W.M. Jones2012-09-051-0/+4
| | | | | | | | | | | | generator. If you go back in time in git (eg. git reset, git bisect) then you can end up in a situation where a file that was generated by a later version is left around unused in the earlier version. This isn't a problem for most things, but gobject documentation generation picks up any file in a directory, even unreferenced ones, and breaks. So the correct thing to do is to remove these files.
* generator: Rename 'generator_*' as '*'.Richard W.M. Jones2012-09-021-0/+35
This is a simple renaming of the files/modules. Note that in OCaml, module names are derived from filenames by capitalizing the first letter. Thus the old module names had the form "Generator_api_versions". The new modules names have the form "Api_versions".