18 lines
168 B
Plaintext
18 lines
168 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
function MyFunc() {
|
||
|
// ...
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
function myFunc() {
|
||
|
// ...
|
||
|
}
|
||
|
----
|