man/io_uring.7: line breaks

Signed-off-by: Jens Axboe <axboe@kernel.dk>
diff --git a/man/io_uring.7 b/man/io_uring.7
index 0a47831..39865e6 100644
--- a/man/io_uring.7
+++ b/man/io_uring.7
@@ -551,8 +551,8 @@
 int io_uring_enter(int ring_fd, unsigned int to_submit,
                    unsigned int min_complete, unsigned int flags)
 {
-    return (int) syscall(__NR_io_uring_enter, ring_fd, to_submit, min_complete,
-                         flags, NULL, 0);
+    return (int) syscall(__NR_io_uring_enter, ring_fd, to_submit,
+    			 min_complete, flags, NULL, 0);
 }
 
 int app_setup_uring(void) {
@@ -696,10 +696,10 @@
     io_uring_smp_store_release(sring_tail, tail);
 
     /*
-    * Tell the kernel we have submitted events with the io_uring_enter() system
-    * call. We also pass in the IOURING_ENTER_GETEVENTS flag which causes the
-    * io_uring_enter() call to wait until min_complete (the 3rd param) events
-    * complete.
+    * Tell the kernel we have submitted events with the io_uring_enter()
+    * system call. We also pass in the IOURING_ENTER_GETEVENTS flag which
+    * causes the io_uring_enter() call to wait until min_complete
+    * (the 3rd param) events complete.
     * */
     int ret =  io_uring_enter(ring_fd, 1,1,
                               IORING_ENTER_GETEVENTS);