Skip to content

Commit 574c932

Browse files
author
Joel Collins
committed
Fixed example integration_time descriptions
1 parent fe1f088 commit 574c932

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ labthing.build_property(
4747
labthing.build_property(
4848
my_spectrometer, # Python object
4949
"integration_time", # Objects attribute name
50-
description="A magic denoise property",
50+
description="Single-shot integration time",
5151
schema=fields.Int(min=100, max=500, example=200, unit="microsecond")
5252
)
5353

docs/basic_usage/serialising.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ From our quickstart example, we use schemas for our `integration_time` property
2323
labthing.build_property(
2424
my_spectrometer, # Python object
2525
"integration_time", # Objects attribute name
26-
description="A magic denoise property",
26+
description="Single-shot integration time",
2727
schema=fields.Int(min=100, max=500, example=200, unit="microsecond")
2828
)
2929

docs/quickstart.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ An example Lab Thing built from our ``PretendSpectrometer`` class, complete with
4343
labthing.build_property(
4444
my_spectrometer, # Python object
4545
"integration_time", # Objects attribute name
46-
description="A magic denoise property",
46+
description="Single-shot integration time",
4747
schema=fields.Int(min=100, max=500, example=200, unit="microsecond")
4848
)
4949
@@ -100,7 +100,7 @@ Once started, the app will build and serve a full web API, and generate the foll
100100
},
101101
"pretendSpectrometerMagicDenoise": {
102102
"title": "PretendSpectrometer_magic_denoise",
103-
"description": "A magic denoise property",
103+
"description": "Single-shot integration time",
104104
"links": [{
105105
"href": "/properties/PretendSpectrometer/magic_denoise"
106106
}],

examples/docs_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
labthing.build_property(
2828
my_spectrometer, # Python object
2929
"integration_time", # Objects attribute name
30-
description="A magic denoise property",
30+
description="Single-shot integration time",
3131
schema=fields.Int(min=100, max=500, example=200, unit="microsecond"),
3232
)
3333

0 commit comments

Comments
 (0)