20 lines
247 B
Plaintext
Raw Normal View History

== Why is this an issue?
include::../description_with_reference_to_s5998.adoc[]
=== Noncompliant code example
2022-02-04 17:28:24 +01:00
[source,javascript]
----
/a|b|c/; // Noncompliant
----
=== Compliant solution
2022-02-04 17:28:24 +01:00
[source,javascript]
----
/[abc]/;
// or
/[a-c]/;
----