]> git.sesse.net Git - vlc/blobdiff - bindings/python/vlc_media.c
Fix spelling of the word ``instantiating''.
[vlc] / bindings / python / vlc_media.c
index 280e68b69e79a9dff64e38e28a7cf39157844322..066fcf611a9e75132e723aa96a21a112a15094ff 100644 (file)
@@ -30,7 +30,7 @@ static PyObject *
 vlcMedia_new( PyTypeObject *type, PyObject *args, PyObject *kwds )
 {
     fprintf(stderr, "vlcMedia_new called\n");
-    PyErr_SetString( PyExc_TypeError, "vlc.Media can be instanciated by itself. You should use vlc.Instance().media_new(mrl)." );
+    PyErr_SetString( PyExc_TypeError, "vlc.Media can be instantiated by itself. You should use vlc.Instance().media_new(mrl)." );
     return NULL;
 }