diff --git a/libavutil/fifo.c b/libavutil/fifo.c
index 635df2dbf896247586d7579ef1830697d79e927f..fb06765a16677b5b59595bf29e7215b4e9d8dbb0 100644
--- a/libavutil/fifo.c
+++ b/libavutil/fifo.c
@@ -85,7 +85,7 @@ void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size)
 }
 
 
-/* get data from the fifo (return -1 if not enough data) */
+/** get data from the fifo (return -1 if not enough data) */
 int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void*, int), void* dest)
 {
     int size = av_fifo_size(f);
@@ -105,7 +105,7 @@ int av_fifo_generic_read(AVFifoBuffer *f, int buf_size, void (*func)(void*, void
     return 0;
 }
 
-/* discard data from the fifo */
+/** discard data from the fifo */
 void av_fifo_drain(AVFifoBuffer *f, int size)
 {
     f->rptr += size;