Skip to content

Commit

Permalink
Changed grace type enum values to use camelCase.
Browse files Browse the repository at this point in the history
Refs #334.
  • Loading branch information
adrianholovaty committed Apr 22, 2024
1 parent 2ec0ea2 commit b53d8e8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions docgenerator/data.json
Expand Up @@ -5927,7 +5927,7 @@
"pk": 1,
"fields": {
"parent": 111,
"name": "make-time",
"name": "makeTime",
"description": "The run of grace notes delays the onset of the next non-grace event."
}
},
Expand All @@ -5936,7 +5936,7 @@
"pk": 2,
"fields": {
"parent": 111,
"name": "steal-following",
"name": "stealFollowing",
"description": "The run of grace notes occupies a time interval starting at the expected onset of the next non-grace event, both delaying its onset and shortening its duration."
}
},
Expand All @@ -5945,7 +5945,7 @@
"pk": 3,
"fields": {
"parent": 111,
"name": "steal-previous",
"name": "stealPrevious",
"description": "The run of grace notes occupies a time interval that ends before the expected onset of the next non-grace event, shortening the duration of the preceding non-grace event."
}
},
Expand Down
6 changes: 3 additions & 3 deletions docs/mnx-reference/objects/grace-type/index.html
Expand Up @@ -67,17 +67,17 @@ <h2>Allowed values:</h2>
</thead>

<tr>
<td><nobr><b>&quot;make-time&quot;</b></nobr></td>
<td><nobr><b>&quot;makeTime&quot;</b></nobr></td>
<td>The run of grace notes delays the onset of the next non-grace event.</td>
</tr>

<tr>
<td><nobr><b>&quot;steal-following&quot;</b></nobr></td>
<td><nobr><b>&quot;stealFollowing&quot;</b></nobr></td>
<td>The run of grace notes occupies a time interval starting at the expected onset of the next non-grace event, both delaying its onset and shortening its duration.</td>
</tr>

<tr>
<td><nobr><b>&quot;steal-previous&quot;</b></nobr></td>
<td><nobr><b>&quot;stealPrevious&quot;</b></nobr></td>
<td>The run of grace notes occupies a time interval that ends before the expected onset of the next non-grace event, shortening the duration of the preceding non-grace event.</td>
</tr>

Expand Down
6 changes: 3 additions & 3 deletions docs/mnx-schema.json
Expand Up @@ -876,9 +876,9 @@
},
"grace-type": {
"enum": [
"make-time",
"steal-following",
"steal-previous"
"makeTime",
"stealFollowing",
"stealPrevious"
],
"type": "string"
},
Expand Down

0 comments on commit b53d8e8

Please sign in to comment.