diff --git a/docs/bin/generate-parsed-md.php b/docs/bin/generate-parsed-md.php index c080f0b3..3731dd38 100644 --- a/docs/bin/generate-parsed-md.php +++ b/docs/bin/generate-parsed-md.php @@ -540,7 +540,12 @@ function ( $count ) { ksort( $types ); foreach ( $types as $type => $elements ) { - $markdown .= '### ' . ucfirst( $type ) . "s\n\n"; + // Make `class` plural manually. + if ( 'class' === strtolower( $type ) ) { + $markdown .= '### ' . ucfirst( 'classes' ) . "\n\n"; + } else { + $markdown .= '### ' . ucfirst( $type ) . "s\n\n"; + } // Sort elements alphabetically sort( $elements ); diff --git a/docs/code-reference/META.md b/docs/code-reference/META.md index 16dbdb6b..b9d58454 100644 --- a/docs/code-reference/META.md +++ b/docs/code-reference/META.md @@ -573,7 +573,7 @@ This file tracks code elements that need documentation. ## rest-api/class-acf-rest-api.php -### Classs +### Classes - `ACF_Rest_Api`