From bc29a1c38ae866061cc419d253653db99e8da705 Mon Sep 17 00:00:00 2001 From: Darren Benney Date: Wed, 9 Sep 2015 15:30:00 +0100 Subject: [PATCH] Fix typo. Docs referenced IReader class incorrectly. --- Documentation/markdown/Overview/02-Architecture.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/markdown/Overview/02-Architecture.md b/Documentation/markdown/Overview/02-Architecture.md index d5af2ce..b59c188 100644 --- a/Documentation/markdown/Overview/02-Architecture.md +++ b/Documentation/markdown/Overview/02-Architecture.md @@ -40,7 +40,7 @@ Just like desktop spreadsheet software, PHPExcel represents a spreadsheet contai On its own, PHPExcel does not provide the functionality to read from or write to a persisted spreadsheet (on disk or in a database). To provide that functionality, readers and writers can be used. -By default, the PHPExcel package provides some readers and writers, including one for the Open XML spreadsheet format (a.k.a. Excel 2007 file format). You are not limited to the default readers and writers, as you are free to implement the PHPExcel_Writer_IReader and PHPExcel_Writer_IWriter interface in a custom class. +By default, the PHPExcel package provides some readers and writers, including one for the Open XML spreadsheet format (a.k.a. Excel 2007 file format). You are not limited to the default readers and writers, as you are free to implement the PHPExcel_Reader_IReader and PHPExcel_Writer_IWriter interface in a custom class. ![02-readers-writers.png](./images/02-readers-writers.png "")