Fix some typos (found by codespell)
[pspp] / src / ui / gui / psppire-import-assistant.c
index 5f8793186b3303e8201c724f48c6b5cfe0892239..487c89b68e0ea40980bbdb9db0b2b726610fa157 100644 (file)
@@ -1523,11 +1523,11 @@ set_quote_list (GtkComboBox *cb)
   GtkListStore *list =  gtk_list_store_new (1, G_TYPE_STRING);
   GtkTreeIter iter;
   gint i;
-  const gchar *seperator[3] = {"'\"", "\'", "\""};
+  const gchar *separator[3] = {"'\"", "\'", "\""};
 
   for (i = 0; i < 3; i++)
     {
-      const gchar *s = seperator[i];
+      const gchar *s = separator[i];
 
       /* Add a new row to the model */
       gtk_list_store_append (list, &iter);