diff options
Diffstat (limited to 'Modules/sunaudiodev.c')
-rw-r--r-- | Modules/sunaudiodev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/sunaudiodev.c b/Modules/sunaudiodev.c index 5ef2c06..d4e5ec9 100644 --- a/Modules/sunaudiodev.c +++ b/Modules/sunaudiodev.c @@ -258,7 +258,7 @@ sad_obufcount(sadobject *self, PyObject *args) PyErr_SetFromErrno(SunAudioError); return NULL; } - /* x_ocount is in bytes, wheras play.samples is in frames */ + /* x_ocount is in bytes, whereas play.samples is in frames */ /* we want frames */ return PyInt_FromLong(self->x_ocount / (ai.play.channels * ai.play.precision / 8) - |