epics-base / p4p

Python bindings for the PVAccess network client and server.
BSD 3-Clause "New" or "Revised" License
27 stars 38 forks source link

Fix typo in server.rst #97

Closed alt-graph closed 1 year ago

alt-graph commented 1 year ago

The documentation misspelled a parameter name. Instead of

op.done(err="oops")

it should be:

op.done(error="oops")
mdavidsaver commented 1 year ago

Thanks!