From 80e84d2286f2bea8cad21086792657cc2cbbf542 Mon Sep 17 00:00:00 2001 From: Simon Fondrie-Teitler Date: Sat, 9 Aug 2014 12:49:01 -0400 Subject: [PATCH] Fix misspellings of endianness --- audiolab/pysndfile/_sndfile.c | 2 +- audiolab/pysndfile/_sndfile.pyx | 2 +- audiolab/pysndfile/compat.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/audiolab/pysndfile/_sndfile.c b/audiolab/pysndfile/_sndfile.c index 3655256..e51fd7e 100644 --- a/audiolab/pysndfile/_sndfile.c +++ b/audiolab/pysndfile/_sndfile.c @@ -9033,7 +9033,7 @@ PyTypeObject __pyx_type_7scikits_8audiolab_9pysndfile_8_sndfile_Format = { 0, /*tp_setattro*/ &__pyx_tp_as_buffer_Format, /*tp_as_buffer*/ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_BASETYPE|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_HAVE_GC, /*tp_flags*/ - "Format(type=wav, encoding=pcm16, endianness=file)\n This class represents an audio file format. It knows about audio file\n format (wav, aiff, etc...), encoding (pcm, etc...) and endianness.\n\n Parameters\n ----------\n type : str\n the major file format (wav, etc...).\n encoding : str\n the encoding (pcm16, etc..).\n endianness : str\n the endianess.\n\n Notes\n -----\n The possible values for type, and encoding depend on your installed\n libsndfile. You can query the possible values with the functions\n available_file_formats and available_encodings.\n\n See also\n --------\n Sndfile class.\n ", /*tp_doc*/ + "Format(type=wav, encoding=pcm16, endianness=file)\n This class represents an audio file format. It knows about audio file\n format (wav, aiff, etc...), encoding (pcm, etc...) and endianness.\n\n Parameters\n ----------\n type : str\n the major file format (wav, etc...).\n encoding : str\n the encoding (pcm16, etc..).\n endianness : str\n the endianness.\n\n Notes\n -----\n The possible values for type, and encoding depend on your installed\n libsndfile. You can query the possible values with the functions\n available_file_formats and available_encodings.\n\n See also\n --------\n Sndfile class.\n ", /*tp_doc*/ __pyx_tp_traverse_7scikits_8audiolab_9pysndfile_8_sndfile_Format, /*tp_traverse*/ __pyx_tp_clear_7scikits_8audiolab_9pysndfile_8_sndfile_Format, /*tp_clear*/ __pyx_pf_7scikits_8audiolab_9pysndfile_8_sndfile_6Format___richcmp__, /*tp_richcompare*/ diff --git a/audiolab/pysndfile/_sndfile.pyx b/audiolab/pysndfile/_sndfile.pyx index 48df0e9..e166bb7 100644 --- a/audiolab/pysndfile/_sndfile.pyx +++ b/audiolab/pysndfile/_sndfile.pyx @@ -139,7 +139,7 @@ cdef class Format: encoding : str the encoding (pcm16, etc..). endianness : str - the endianess. + the endianness. Notes ----- diff --git a/audiolab/pysndfile/compat.py b/audiolab/pysndfile/compat.py index 5dc3eb5..13914a6 100644 --- a/audiolab/pysndfile/compat.py +++ b/audiolab/pysndfile/compat.py @@ -37,7 +37,7 @@ def __init__(self, type = 'wav', encoding = 'pcm16', endianness = 'file'): encoding : string represents the encoding (pcm16, etc..). endianness : string - represents the endianess. + represents the endianness. Notes -----