[vlc-commits] playlist: fix spelling mistakes
Eric Engestrom
git at videolan.org
Sat Apr 2 17:13:32 CEST 2016
vlc | branch: master | Eric Engestrom <eric at engestrom.ch> | Sat Apr 2 15:50:33 2016 +0100| [05e77ec62db5cde854459b47d106325e0ca4c10f] | committer: Rémi Denis-Courmont
playlist: fix spelling mistakes
Signed-off-by: Eric Engestrom <eric at engestrom.ch>
Signed-off-by: Rémi Denis-Courmont <remi at remlab.net>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=05e77ec62db5cde854459b47d106325e0ca4c10f
---
src/playlist/fetcher.h | 2 +-
src/playlist/item.c | 4 ++--
src/playlist/preparser.h | 2 +-
src/playlist/sort.c | 2 +-
src/playlist/thread.c | 2 +-
5 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/src/playlist/fetcher.h b/src/playlist/fetcher.h
index c7d9c2d..3dc2bd6 100644
--- a/src/playlist/fetcher.h
+++ b/src/playlist/fetcher.h
@@ -30,7 +30,7 @@
/**
* Fetcher opaque structure.
*
- * The fether object will retreive the art album data for any given input
+ * The fether object will retrieve the art album data for any given input
* item in an asynchronous way.
*/
typedef struct playlist_fetcher_t playlist_fetcher_t;
diff --git a/src/playlist/item.c b/src/playlist/item.c
index 8d54e86..e4cf879 100644
--- a/src/playlist/item.c
+++ b/src/playlist/item.c
@@ -709,7 +709,7 @@ int playlist_TreeMoveMany( playlist_t *p_playlist,
*
* \param p_playlist the playlist object
* \param i_item_id id of the item added
- * \param i_node_id id of the node in wich the item was added
+ * \param i_node_id id of the node in which the item was added
* \param b_signal TRUE if the function must send a signal
* \return nothing
*/
@@ -774,7 +774,7 @@ static void GoAndPreparse( playlist_t *p_playlist, int i_mode,
input_Stop( sys->p_input );
vlc_cond_signal( &sys->signal );
}
- /* Preparse if no artist/album info, and hasn't been preparsed allready
+ /* Preparse if no artist/album info, and hasn't been preparsed already
and if user has some preparsing option (auto-preparse variable)
enabled*/
char *psz_artist = input_item_GetArtist( p_item->p_input );
diff --git a/src/playlist/preparser.h b/src/playlist/preparser.h
index 2b28863..fabb57b 100644
--- a/src/playlist/preparser.h
+++ b/src/playlist/preparser.h
@@ -29,7 +29,7 @@
/**
* Preparser opaque structure.
*
- * The preparser object will retreive the meta data of any given input item in
+ * The preparser object will retrieve the meta data of any given input item in
* an asynchronous way.
* It will also issue art fetching requests.
*/
diff --git a/src/playlist/sort.c b/src/playlist/sort.c
index e0307db..1b6d1b6 100644
--- a/src/playlist/sort.c
+++ b/src/playlist/sort.c
@@ -62,7 +62,7 @@ static inline int meta_strcasecmp_title( const playlist_item_t *first,
}
/**
- * Compare two intems accoring to the given meta type
+ * Compare two intems according to the given meta type
* @param first: the first item
* @param second: the second item
* @param meta: the meta type to use to sort the items
diff --git a/src/playlist/thread.c b/src/playlist/thread.c
index a348479..2d54850 100644
--- a/src/playlist/thread.c
+++ b/src/playlist/thread.c
@@ -394,7 +394,7 @@ static playlist_item_t *NextItem( playlist_t *p_playlist )
PL_DEBUG( "changing item without a request (current %i/%i)",
p_playlist->i_current_index, p_playlist->current.i_size );
- /* Cant go to next from current item */
+ /* Can't go to next from current item */
if( get_current_status_item( p_playlist ) &&
get_current_status_item( p_playlist )->i_flags & PLAYLIST_SKIP_FLAG )
return NULL;
More information about the vlc-commits
mailing list