nest / nest-simulator

The NEST simulator
http://www.nest-simulator.org
GNU General Public License v2.0
544 stars 370 forks source link

Syntax error in MM docs #3291

Closed thorstenhater closed 3 months ago

thorstenhater commented 3 months ago

Example for tweaking Multimeter parameters is missing a '{'. See here: https://nest-simulator.readthedocs.io/en/v3.3/models/multimeter.html#multimeter-sampling-continuous-quantities-from-neurons

nest.SetStatus(mm, 'interval': 0.1})

should read

nest.SetStatus(mm, {'interval': 0.1})
#                  ^ here