[Bug 20435] New: Don't inline arrays in send() calls in examples

https://www.w3.org/Bugs/Public/show_bug.cgi?id=20435

            Bug ID: 20435
           Summary: Don't inline arrays in send() calls in examples
    Classification: Unclassified
           Product: AudioWG
           Version: unspecified
          Hardware: All
                OS: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: MIDI API
          Assignee: dave.null@w3.org
          Reporter: cwilso@gmail.com
        QA Contact: public-audio@w3.org

The spec has examples like

output.send( [0x90, 60, 0x7f] );

We should really pull the array declarations out of inline, e.g.

var data = [0x90, 60, 0x7f];
output.send( data );

to highlight that it is an array parameter.

-- 
You are receiving this mail because:
You are the QA Contact for the bug.

Received on Tuesday, 18 December 2012 18:19:03 UTC