Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Jun 8, 2012
1 parent 652ac85 commit 7c0507b
Show file tree
Hide file tree
Showing 12 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion HISTORY.rst
Expand Up @@ -20,7 +20,7 @@ History


* Dataset API Changes * Dataset API Changes
* ``stack_rows`` => ``stack``, ``stack_columns`` => ``stack_cols`` * ``stack_rows`` => ``stack``, ``stack_columns`` => ``stack_cols``
* column operations have their own methods now (``apend_col``, ``insert_col``) * column operations have their own methods now (``append_col``, ``insert_col``)
* List-style ``pop()`` * List-style ``pop()``
* Redis-style ``rpush``, ``lpush``, ``rpop``, ``lpop``, ``rpush_col``, and ``lpush_col`` * Redis-style ``rpush``, ``lpush``, ``rpop``, ``lpop``, ``rpush_col``, and ``lpush_col``


Expand Down
2 changes: 1 addition & 1 deletion docs/development.rst
Expand Up @@ -46,7 +46,7 @@ Source Control
Tablib source is controlled with Git_, the lean, mean, distributed source Tablib source is controlled with Git_, the lean, mean, distributed source
control machine. control machine.


The repository is publicly accessable. The repository is publicly accessible.


``git clone git://github.com/kennethreitz/tablib.git`` ``git clone git://github.com/kennethreitz/tablib.git``


Expand Down
8 changes: 4 additions & 4 deletions docs/install.rst
Expand Up @@ -2,7 +2,7 @@
Installation Installation
============ ============


This part of the documentation covers the installation of Tablib. The first step to using any software package is getting it properly installed. Please read this section carefully, or you may miss out on some nice :ref:`speed enhancements <peed-extentions>`. This part of the documentation covers the installation of Tablib. The first step to using any software package is getting it properly installed. Please read this section carefully, or you may miss out on some nice :ref:`speed enhancements <peed-extensions>`.




.. _installing: .. _installing:
Expand Down Expand Up @@ -57,15 +57,15 @@ To download the full source history from Git, see :ref:`Source Control <scm>`.
.. _zipball: http://github.com/kennethreitz/tablib/zipball/master .. _zipball: http://github.com/kennethreitz/tablib/zipball/master




.. _speed-extentions: .. _speed-extensions:
Speed Extentions Speed Extensions
---------------- ----------------


.. versionadded:: 0.8.5 .. versionadded:: 0.8.5


Tablib is partially dependent on the **pyyaml**, **simplejson**, and **xlwt** modules. To reduce installation issues, fully integrated versions of all required libraries are included in Tablib. Tablib is partially dependent on the **pyyaml**, **simplejson**, and **xlwt** modules. To reduce installation issues, fully integrated versions of all required libraries are included in Tablib.


However, if performance is important to you (and it should be), you can install **pyyaml** with C extentions from PyPi. :: However, if performance is important to you (and it should be), you can install **pyyaml** with C extensions from PyPi. ::


$ pip install PyYAML $ pip install PyYAML


Expand Down
2 changes: 1 addition & 1 deletion tablib/formats/_csv.py
Expand Up @@ -7,7 +7,7 @@




title = 'csv' title = 'csv'
extentions = ('csv',) extensions = ('csv',)




DEFAULT_ENCODING = 'utf-8' DEFAULT_ENCODING = 'utf-8'
Expand Down
2 changes: 1 addition & 1 deletion tablib/formats/_html.py
Expand Up @@ -18,7 +18,7 @@
BOOK_ENDINGS = 'h3' BOOK_ENDINGS = 'h3'


title = 'html' title = 'html'
extentions = ('html', ) extensions = ('html', )




def export_set(dataset): def export_set(dataset):
Expand Down
2 changes: 1 addition & 1 deletion tablib/formats/_json.py
Expand Up @@ -10,7 +10,7 @@




title = 'json' title = 'json'
extentions = ('json', 'jsn') extensions = ('json', 'jsn')




def export_set(dataset): def export_set(dataset):
Expand Down
2 changes: 1 addition & 1 deletion tablib/formats/_ods.py
Expand Up @@ -14,7 +14,7 @@
from tablib.compat import opendocument, style, table, text, unicode from tablib.compat import opendocument, style, table, text, unicode


title = 'ods' title = 'ods'
extentions = ('ods',) extensions = ('ods',)


bold = style.Style(name="bold", family="paragraph") bold = style.Style(name="bold", family="paragraph")
bold.addElement(style.TextProperties(fontweight="bold", fontweightasian="bold", fontweightcomplex="bold")) bold.addElement(style.TextProperties(fontweight="bold", fontweightasian="bold", fontweightcomplex="bold"))
Expand Down
2 changes: 1 addition & 1 deletion tablib/formats/_tsv.py
Expand Up @@ -8,7 +8,7 @@




title = 'tsv' title = 'tsv'
extentions = ('tsv',) extensions = ('tsv',)


DEFAULT_ENCODING = 'utf-8' DEFAULT_ENCODING = 'utf-8'


Expand Down
2 changes: 1 addition & 1 deletion tablib/formats/_xls.py
Expand Up @@ -11,7 +11,7 @@
import tablib import tablib


title = 'xls' title = 'xls'
extentions = ('xls',) extensions = ('xls',)


# special styles # special styles
wrap = xlwt.easyxf("alignment: wrap on") wrap = xlwt.easyxf("alignment: wrap on")
Expand Down
2 changes: 1 addition & 1 deletion tablib/formats/_xlsx.py
Expand Up @@ -21,7 +21,7 @@




title = 'xlsx' title = 'xlsx'
extentions = ('xlsx',) extensions = ('xlsx',)


def export_set(dataset): def export_set(dataset):
"""Returns XLSX representation of Dataset.""" """Returns XLSX representation of Dataset."""
Expand Down
2 changes: 1 addition & 1 deletion tablib/formats/_yaml.py
Expand Up @@ -19,7 +19,7 @@




title = 'yaml' title = 'yaml'
extentions = ('yaml', 'yml') extensions = ('yaml', 'yml')






Expand Down
4 changes: 2 additions & 2 deletions test_tablib.py
Expand Up @@ -306,7 +306,7 @@ def test_html_export_none_value(self):




def test_unicode_append(self): def test_unicode_append(self):
"""Passes in a single unicode charecter and exports.""" """Passes in a single unicode character and exports."""


new_row = ('å', 'é') new_row = ('å', 'é')
data.append(new_row) data.append(new_row)
Expand All @@ -322,7 +322,7 @@ def test_unicode_append(self):




def test_book_export_no_exceptions(self): def test_book_export_no_exceptions(self):
"""Test that varoius exports don't error out.""" """Test that various exports don't error out."""


book = tablib.Databook() book = tablib.Databook()
book.add_sheet(data) book.add_sheet(data)
Expand Down

0 comments on commit 7c0507b

Please sign in to comment.