I would like to make correcting typos as easy as possible for the R developers. How can I send a diff file making such a “patch”?
Also, where should I send the typo? Through email? Post a bug? Send it to r-devel?
I am mostly concerned with small typos, such as misspellings or grammatical corrections.
I can’t recall where the last typo I saw was, but only as an example, let’s just suppose I would like to change “back” to “backward” in “back compatibility in the help file for ls. How can I make a diff patch?
Thank you
@David Alber’s advice about diff formats is good (although I often use
diff -cinstead), but I beg to differ about the best target (he suggestsbug.reportand the R bug tracking system).r-devel@r-project.orgmailing list is usually best (make sure you are using the latest version! — see next point). This is how I do it, and it seems to be preferred by the R developers because it means they don’t have to deal with the full bug-reporting machinery. (The only documentation of that protocol I can easily find is this note from Brian Ripley in 2007.)svn diffto get diffs against the latest version. As above, send it tor-devel(I believe text-file attachments are preserved in e-mail tor-devel).maintainer("pkg")finds the e-mail address of the maintainer).