Problem/Motivation

Found in #2874067: Fix Drupal.Commenting.DocCommentLongArraySyntax coding standard

This is just one instance but there could be others. Will need to determine scope

Before

*     '{{ arguments.foo.a }}' => 'value',
   *     '{{ arguments.foo.b }}' => 'value',
   *     '{{ arguments.bar.a }}' => 'value',
   *     '{{ arguments.bar.b.c }}' => 'value',

after

   *     '%foo_a' => 'value'
   *     '%foo_b' => 'value'
   *     '%bar_a' => 'value'
   *     '%bar_b_c' => 'value'

Steps to reproduce

N/A

Proposed resolution

TBD

Remaining tasks

Determine better title
Determine scope

User interface changes

N/A

API changes

N/A

Data model changes

N/A

Release notes snippet

N/A

Comments

smustgrave created an issue. See original summary.

xjm’s picture

Can we confirm that this wasn't just a bad merge? I.e., were the docs for this updated sometime in the past 6-12 months (such that this would be reverting such a change)?

Version: 11.x-dev » main

Drupal core is now using the main branch as the primary development branch. New developments and disruptive changes should now be targeted to the main branch.

Read more in the announcement.