Skip to content

Commit

Permalink
Fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiago Cunha committed Feb 8, 2012
1 parent c503655 commit 732991f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion keybindings.c
Original file line number Diff line number Diff line change
Expand Up @@ -1199,7 +1199,7 @@ kba_paste(KbaArgs a)

/* can't alter library */
if (p == mdb.library) {
paint_error("Cannot alter %s psuedo-playlist", mdb.library->name);
paint_error("Cannot alter %s pseudo-playlist", mdb.library->name);
return;
}

Expand Down
2 changes: 1 addition & 1 deletion medialib.c
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ medialib_load(const char *db_file, const char *playlist_dir)
mdb.filter_results->name = strdup("--FILTER--");

if (mdb.library->name == NULL || mdb.filter_results->name == NULL)
err(1, "failed to strdup psuedo-names in medialib_load");
err(1, "failed to strdup pseudo-names in medialib_load");

/* load the actual database */
medialib_db_load(db_file);
Expand Down
2 changes: 1 addition & 1 deletion medialib.h
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ typedef struct {
char *db_file; /* file containing the database */
char *playlist_dir; /* directory where playlists are stored */

/* psuedo-playlists */
/* pseudo-playlists */
playlist *library; /* playlist representing the database */
playlist *filter_results; /* playlist representing results of a filter */
/*
Expand Down

0 comments on commit 732991f

Please sign in to comment.