Skip to content

Commit

Permalink
Fix double-quote in code block
Browse files Browse the repository at this point in the history
  • Loading branch information
suitougreentea committed Dec 26, 2015
1 parent 52fa6ed commit f7d2faf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -579,8 +579,8 @@ name :: DOMString

- If file extension is provided but the file is not found or cannot be played, then the implementation should treat the file name as if its extension is removed.

- Example: ``{ name: piano.wav }`` → ``piano.wav`` not found → Treat as ``"piano"`` → Try ``piano.wav``, ``piano.ogg``, …
- Example: ``{ name: piano.ogg }`` → ogg not supported → Treat as ``"piano"`` → Try ``piano.wav``, ``piano.ogg``, ``piano.m4a``…
- Example: ``{ name: "piano.wav" }`` → ``piano.wav`` not found → Treat as ``"piano"`` → Try ``piano.wav``, ``piano.ogg``, …
- Example: ``{ name: "piano.ogg" }`` → ogg not supported → Treat as ``"piano"`` → Try ``piano.wav``, ``piano.ogg``, ``piano.m4a``…

- The sound files may live in subdirectories relative to bmson file.

Expand All @@ -591,7 +591,7 @@ name :: DOMString
- Reference to parent directory: ``../../../var/www/html/config.php``
- Null characters (``\0``)

- Example: ``{ name: intro\\drum }``
- Example: ``{ name: "intro\\drum" }``

Sound File Format Recommendation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Expand Down

0 comments on commit f7d2faf

Please sign in to comment.