Loading...
string/FreeBSD/strchr.3 Libc-997.90.3 Libc-763.12
--- Libc/Libc-997.90.3/string/FreeBSD/strchr.3
+++ Libc/Libc-763.12/string/FreeBSD/strchr.3
@@ -43,15 +43,9 @@
 .Sh SYNOPSIS
 .In string.h
 .Ft "char *"
-.Fo strchr
-.Fa "const char *s"
-.Fa "int c"
-.Fc
+.Fn strchr "const char *s" "int c"
 .Ft "char *"
-.Fo strrchr
-.Fa "const char *s"
-.Fa "int c"
-.Fc
+.Fn strrchr "const char *s" "int c"
 .Sh DESCRIPTION
 The
 .Fn strchr
@@ -61,7 +55,7 @@
 .Vt char )
 in the string pointed to by
 .Fa s .
-The terminating null character is considered to be part of the string;
+The terminating null character is considered part of the string;
 therefore if
 .Fa c
 is
@@ -72,7 +66,7 @@
 The
 .Fn strrchr
 function is identical to
-.Fn strchr ,
+.Fn strchr
 except it locates the last occurrence of
 .Fa c .
 .Sh RETURN VALUES