Skip to content

Commit df78735

Browse files
committed
Regenerated
1 parent f338f12 commit df78735

File tree

8 files changed

+44
-44
lines changed

8 files changed

+44
-44
lines changed

examples/document.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ A model for documents.
3030
<table>
3131
<tr>
3232
<td><b>sections</b></td>
33-
<td><a href="#list">List</a></td>
33+
<td><a href="#section">Section</a></td>
3434
<td><i>The sections of the document</i></td>
3535
</tr>
3636

@@ -55,7 +55,7 @@ A model of a section of the <a href="#document">Document</a>. Will contain one <
5555
<table>
5656
<tr>
5757
<td><b>paragraphs</b></td>
58-
<td><a href="#list">List</a></td>
58+
<td><a href="#paragraph">Paragraph</a></td>
5959
<td><i>The paragraphs</i></td>
6060
</tr>
6161

examples/document.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Allowed field Data Type Description
1515

1616
**Allowed children**
1717

18-
=============== ================ ============================
19-
Allowed child Data Type Description
20-
=============== ================ ============================
21-
**sections** `List <#list>`__ The sections of the document
22-
=============== ================ ============================
18+
=============== ====================== ============================
19+
Allowed child Data Type Description
20+
=============== ====================== ============================
21+
**sections** `Section <#section>`__ The sections of the document
22+
=============== ====================== ============================
2323

2424
=======
2525
Section
@@ -36,11 +36,11 @@ Allowed field Data Type Description
3636

3737
**Allowed children**
3838

39-
=============== ================ ==============
40-
Allowed child Data Type Description
41-
=============== ================ ==============
42-
**paragraphs** `List <#list>`__ The paragraphs
43-
=============== ================ ==============
39+
=============== ========================== ==============
40+
Allowed child Data Type Description
41+
=============== ========================== ==============
42+
**paragraphs** `Paragraph <#paragraph>`__ The paragraphs
43+
=============== ========================== ==============
4444

4545
=========
4646
Paragraph

examples/document.specification.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
},
1818
"allowed_children": {
1919
"sections": {
20-
"type": "List",
20+
"type": "Section",
2121
"description": "The sections of the document"
2222
}
2323
}
@@ -32,7 +32,7 @@
3232
},
3333
"allowed_children": {
3434
"paragraphs": {
35-
"type": "List",
35+
"type": "Paragraph",
3636
"description": "The paragraphs"
3737
}
3838
}

examples/document.specification.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Document:
1212
description: International Standard Book Number
1313
allowed_children:
1414
sections:
15-
type: List
15+
type: Section
1616
description: The sections of the document
1717
Section:
1818
definition: A model of a section of the :class:`Document`. Will contain one :class:`Paragraph`
@@ -24,7 +24,7 @@ Section:
2424
description: The id of the section
2525
allowed_children:
2626
paragraphs:
27-
type: List
27+
type: Paragraph
2828
description: The paragraphs
2929
Paragraph:
3030
definition: A model of a paragraph.

examples/neuroml2/NeuroML2.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,21 +23,21 @@ Some description...
2323
<table>
2424
<tr>
2525
<td><b>izhikevich2007Cells</b></td>
26-
<td><a href="#list">List</a></td>
26+
<td><a href="#izhikevich2007cell">Izhikevich2007Cell</a></td>
2727
<td><i></i></td>
2828
</tr>
2929

3030

3131
<tr>
3232
<td><b>pulseGenerators</b></td>
33-
<td><a href="#list">List</a></td>
33+
<td><a href="#pulsegenerator">PulseGenerator</a></td>
3434
<td><i></i></td>
3535
</tr>
3636

3737

3838
<tr>
3939
<td><b>networks</b></td>
40-
<td><a href="#list">List</a></td>
40+
<td><a href="#network">Network</a></td>
4141
<td><i>The networks present</i></td>
4242
</tr>
4343

@@ -181,14 +181,14 @@ Some description...
181181
<table>
182182
<tr>
183183
<td><b>populations</b></td>
184-
<td><a href="#list">List</a></td>
184+
<td><a href="#population">Population</a></td>
185185
<td><i>the pops in the net</i></td>
186186
</tr>
187187

188188

189189
<tr>
190190
<td><b>explicitInputs</b></td>
191-
<td><a href="#list">List</a></td>
191+
<td><a href="#explicitinput">ExplicitInput</a></td>
192192
<td><i></i></td>
193193
</tr>
194194

examples/neuroml2/NeuroML2.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ Allowed field Data Type Description
1414

1515
**Allowed children**
1616

17-
======================= ================ ====================
18-
Allowed child Data Type Description
19-
======================= ================ ====================
20-
**izhikevich2007Cells** `List <#list>`__
21-
**pulseGenerators** `List <#list>`__
22-
**networks** `List <#list>`__ The networks present
23-
======================= ================ ====================
17+
======================= ============================================ ====================
18+
Allowed child Data Type Description
19+
======================= ============================================ ====================
20+
**izhikevich2007Cells** `Izhikevich2007Cell <#izhikevich2007cell>`__
21+
**pulseGenerators** `PulseGenerator <#pulsegenerator>`__
22+
**networks** `Network <#network>`__ The networks present
23+
======================= ============================================ ====================
2424

2525
==================
2626
Izhikevich2007Cell
@@ -76,12 +76,12 @@ Allowed field Data Type Description
7676

7777
**Allowed children**
7878

79-
================== ================ ===================
80-
Allowed child Data Type Description
81-
================== ================ ===================
82-
**populations** `List <#list>`__ the pops in the net
83-
**explicitInputs** `List <#list>`__
84-
================== ================ ===================
79+
================== ================================== ===================
80+
Allowed child Data Type Description
81+
================== ================================== ===================
82+
**populations** `Population <#population>`__ the pops in the net
83+
**explicitInputs** `ExplicitInput <#explicitinput>`__
84+
================== ================================== ===================
8585

8686
==========
8787
Population

examples/neuroml2/NeuroML2.specification.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
},
1414
"allowed_children": {
1515
"izhikevich2007Cells": {
16-
"type": "List",
16+
"type": "Izhikevich2007Cell",
1717
"description": ""
1818
},
1919
"pulseGenerators": {
20-
"type": "List",
20+
"type": "PulseGenerator",
2121
"description": ""
2222
},
2323
"networks": {
24-
"type": "List",
24+
"type": "Network",
2525
"description": "The networks present"
2626
}
2727
}
@@ -106,11 +106,11 @@
106106
},
107107
"allowed_children": {
108108
"populations": {
109-
"type": "List",
109+
"type": "Population",
110110
"description": "the pops in the net"
111111
},
112112
"explicitInputs": {
113-
"type": "List",
113+
"type": "ExplicitInput",
114114
"description": ""
115115
}
116116
}

examples/neuroml2/NeuroML2.specification.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ NeuroML:
99
description: NeuroML version used
1010
allowed_children:
1111
izhikevich2007Cells:
12-
type: List
12+
type: Izhikevich2007Cell
1313
description: ''
1414
pulseGenerators:
15-
type: List
15+
type: PulseGenerator
1616
description: ''
1717
networks:
18-
type: List
18+
type: Network
1919
description: The networks present
2020
Izhikevich2007Cell:
2121
definition: Some description...
@@ -76,10 +76,10 @@ Network:
7676
description: The id of the network
7777
allowed_children:
7878
populations:
79-
type: List
79+
type: Population
8080
description: the pops in the net
8181
explicitInputs:
82-
type: List
82+
type: ExplicitInput
8383
description: ''
8484
Population:
8585
definition: Some description...

0 commit comments

Comments
 (0)