We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dbcbd4 commit 94e6216Copy full SHA for 94e6216
docs/bin/generate-parsed-md.php
@@ -540,7 +540,12 @@ function ( $count ) {
540
ksort( $types );
541
542
foreach ( $types as $type => $elements ) {
543
- $markdown .= '### ' . ucfirst( $type ) . "s\n\n";
+ // Make `class` plural manually.
544
+ if ( 'class' === strtolower( $type ) ) {
545
+ $markdown .= '### ' . ucfirst( 'classes' ) . "\n\n";
546
+ } else {
547
+ $markdown .= '### ' . ucfirst( $type ) . "s\n\n";
548
+ }
549
550
// Sort elements alphabetically
551
sort( $elements );
docs/code-reference/META.md
@@ -573,7 +573,7 @@ This file tracks code elements that need documentation.
573
574
## rest-api/class-acf-rest-api.php
575
576
-### Classs
+### Classes
577
578
- `ACF_Rest_Api`
579
0 commit comments