Our package is now complete! Let's make it easy for our users to take advantage of the amazing convenience provided by IssueReporter—we'll supply them an informative documentation. We already know how to document our code by using DocStrings - which can be used by ourselves and other developers to understand our source code. It's also used by the REPL's help system (remember from Chapter 1, Getting Started with Julia Programming that you can type ? at the beginning of the line to switch the REPL to help mode). You'll be happy to hear that we can also generate package documentation using the same DocStrings, with the help of a package called Documenter. Please add it with (IssueReporter) pkg> add Documenter.
So, the first thing to do is add some DocStrings to our functions. Keep in mind that the official recommendation...