diff --git a/setjmp.S b/setjmp.S
index 64c587ad2ce8ee1f5859860cb961c2bb16d9f2d4..3fe23c5db6bc7ae580cd1e3aea6da862817cdca5 100644
--- a/setjmp.S
+++ b/setjmp.S
@@ -1,17 +1,15 @@
 #   int  setjmp(struct jmpbuf *jmp);
 #   void longjmp(struct jmpbuf *jmp);
 # 
-# Setjmp saves its stack environment in jmp
-# for later use by longjmp.  It returns 0.
+# Setjmp saves its stack environment in jmp for later use by longjmp.
+# It returns 0.
 # 
-# Longjmp restores the environment saved by
-# the last call of setjmp. It then causes 
-# execution to continue as if the call of setjmp
+# Longjmp restores the environment saved by the last call of setjmp.
+# It then causes execution to continue as if the call of setjmp
 # had just returned 1.
 # 
-# The caller of setjmp must not itself have
-# returned in the interim.  All accessible data
-# have values as of the time longjmp was called.
+# The caller of setjmp must not itself have returned in the interim.
+# All accessible data have values as of the time longjmp was called.
 #
 #    [Description, but not code, borrowed from Plan 9.]