diff --git a/README.rst b/README.rst
index 7ab21384..6e6e50bf 100644
--- a/README.rst
+++ b/README.rst
@@ -42,6 +42,7 @@ Features
- `NumPy `__ (Definition of a `numpy.array `__ variable)
- `Pandas `__ (Definition of a - `pandas.DataFrame `__ variable)
- Python code (Definition of a nested list variable)
+ - Space aligned values
- SQLite database file
- Tab-separated values (TSV)
- `TOML `__
@@ -186,7 +187,7 @@ Write a table to an Excel sheet
import pytablewriter
writer = pytablewriter.ExcelXlsxTableWriter()
- writer.open_workbook("sample.xlsx")
+ writer.open("sample.xlsx")
writer.make_worksheet("example")
writer.header_list = ["int", "float", "str", "bool", "mix", "time"]
@@ -364,7 +365,7 @@ Create Elasticsearch index and put data
Write a table using multibyte character
---------------------------------------
-You can use multibyte character as table data.
+You can use multibyte characters as table data.
:Sample Code:
.. code:: python
@@ -383,7 +384,6 @@ Write a table using multibyte character
]
writer.write_table()
-
:Output:
.. figure:: ss/multi_byte_char.png
:scale: 100%
@@ -391,7 +391,6 @@ Write a table using multibyte character
Output of multi-byte character table
-
For more information
--------------------