fix examples formatting

This commit is contained in:
yardasol 2022-07-28 16:03:42 -05:00
parent 623658870d
commit 9317724a5b

View file

@ -414,11 +414,11 @@ class Material(IDManagerMixin):
Examples
--------
>> mat = openmc.Material()
>> components = {'Li': (1.0, {'enrichment': 60.0, 'enrichment_target': 'Li7'}),
'Fl': 1.0,
'Be6': (0.5, 'wo')}
>> mat.add_elements_or_nuclides(components)
>>> mat = openmc.Material()
>>> components = {'Li': (1.0, {'enrichment': 60.0, 'enrichment_target': 'Li7'}),
>>> 'Fl': 1.0,
>>> 'Be6': (0.5, 'wo')}
>>> mat.add_elements_or_nuclides(components)
"""