rescalante-lilly / ruffus

Automatically exported from code.google.com/p/ruffus
MIT License
0 stars 0 forks source link

Typographic errors in the Ruffus online documentation #33

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
On this page:

   http://wwwfgu.anat.ox.ac.uk/~lg/oss/ruffus/decorators/transform.html

near the bottom it has:

   regex("r(.*).c")

I believe it should be:

   regex(r"(.*).c")

(shift r before double quote)

On this page:

   http://wwwfgu.anat.ox.ac.uk/~lg/oss/ruffus/tutorials/manual/logging.html

near the bottom it has:

   logger.proxy.info("Here we go logging")

I believe it should be:

   logger_proxy.info("Here we go logging")

(replace dot with underscore)

Original issue reported on code.google.com by bjp...@unimelb.edu.au on 8 Sep 2010 at 5:46

GoogleCodeExporter commented 9 years ago
Fixed. Thank you very much Eagle eyed! :-)

Original comment by bunbu...@gmail.com on 8 Sep 2010 at 8:00