1
0
Fork 0

Fix documentation typo in quicksort source

This commit is contained in:
wael 2021-09-18 19:24:55 +03:00
parent 8e4487e039
commit 0aba164a14
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* This file has the implementation of the function for bubble sort. */
/* This file has the implementation of the function for quick sort. */
/* Include guards + include statements. */
#ifndef QUCIK_SORT_C
#define QUICK_SORT_C

View File

@ -1,4 +1,4 @@
/* This header defines the function for bubble sort. */
/* This header defines the function for quick sort. */
#ifndef QUICK_SORT_H
#define QUICK_SORT_H
#include <aio.h>