diff --git a/src/task_5.cpp b/src/task_5.cpp
index c769104deca37d45deb1e6c7a28c0a5a5877f7d9..3a0e504ebb5c26317882920260c9d197c396e6ea 100644
--- a/src/task_5.cpp
+++ b/src/task_5.cpp
@@ -2,10 +2,9 @@
 
 /*
 For this task, read in a number n on cin.
-Following that there will be n distinct integers to be read from stdin.
-Once these numbers have been read, one more integer k between 0 and n (at most n-1) will be provided.
-Print out the k'th largest of the n numbers previously read from stdin
+Following that there will be n distinct integers to be read from cin.
+Once these numbers have been read, one more integer k between 0 and n (at most
+n-1) will be provided. Print out the k'th largest of the n numbers previously
+read from stdin
 */
-int main(int argc, char **argv) {
-	return 0;
-}
\ No newline at end of file
+int main(int argc, char** argv) { return 0; }