summaryrefslogtreecommitdiff
path: root/shared-bindings/gnss/SatelliteSystem.c
diff options
context:
space:
mode:
authordherrada <dylan.herrada@adafruit.com>2020-07-03 13:49:00 -0400
committerdherrada <dylan.herrada@adafruit.com>2020-07-03 13:49:00 -0400
commit3df03a565069d6e8874eb678d4f010eee97305b0 (patch)
tree5a98c58eabc6b7d2654f899c9b7582fbea9daa94 /shared-bindings/gnss/SatelliteSystem.c
parent843ff5d30271709186a117877ff0521b769ae8d1 (diff)
Made most of the requested changes
Diffstat (limited to 'shared-bindings/gnss/SatelliteSystem.c')
-rw-r--r--shared-bindings/gnss/SatelliteSystem.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/shared-bindings/gnss/SatelliteSystem.c b/shared-bindings/gnss/SatelliteSystem.c
index 5ee7f0ffb..3405021d4 100644
--- a/shared-bindings/gnss/SatelliteSystem.c
+++ b/shared-bindings/gnss/SatelliteSystem.c
@@ -32,27 +32,27 @@
//| def __init__(self):
//| """Enum-like class to define the satellite system type."""
//|
-//| GPS: gnss.SatelliteSystem = ...
+//| GPS: SatelliteSystem = ...
//| """Global Positioning System.
//|
//| :type gnss.SatelliteSystem:"""
//|
-//| GLONASS: gnss.SatelliteSystem = ...
+//| GLONASS: SatelliteSystem = ...
//| """GLObal NAvigation Satellite System.
//|
//| :type gnss.SatelliteSystem:"""
//|
-//| SBAS: gnss.SatelliteSystem = ...
+//| SBAS: SatelliteSystem = ...
//| """Satellite Based Augmentation System.
//|
//| :type gnss.SatelliteSystem:"""
//|
-//| QZSS_L1CA: gnss.SatelliteSystem = ...
+//| QZSS_L1CA: SatelliteSystem = ...
//| """Quasi-Zenith Satellite System L1C/A.
//|
//| :type gnss.SatelliteSystem:"""
//|
-//| QZSS_L1S: gnss.SatelliteSystem = ...
+//| QZSS_L1S: SatelliteSystem = ...
//| """Quasi-Zenith Satellite System L1S.
//|
//| :type gnss.SatelliteSystem:"""