Documentation Errors

To whom creating the Arduino Reference Pages.

Regarding the SD library documentation on page SD - Arduino Reference

  1. On the page says "Note: only one file can be open at a time."
    However, on page SD - Arduino Reference it is stated that "As of version 1.0, the library supports opening multiple files. "
    So. Does it or does it not support multiple open files?

  2. File modes listed are FILE_READ and FILE_WRITE. What happened to APPEND?

  3. On the page says "FILE_WRITE: open the file for reading and writing, starting at the end of the file."
    What starts at the end of the file? Reading?
    Just because writing always truncates the file first.
    It is APPEND that starts writing at the end.

Could these be corrected please?

Could these be corrected please?

Sure. Just need to come up with some other errors to replace these with, first.

Regarding Ethernet - Arduino Reference

Code example on this page failed to compile because of myIPaddress variable not declared. It can be replaced with ip, for example.

Maybe, this article is outdated. Server class has only one pure virtual function begin(), so it is a abstract class that can not be used directly (sketch example compilation failed).