Skip to content

Commit 8948fe6

Browse files
committed
fixes
1 parent 3fe4ea4 commit 8948fe6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

core/src/G3Timestream.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1384,7 +1384,7 @@ PYBINDINGS("core", scope) {
13841384
"log_fatal() if units, length, start, or stop times do not match")
13851385
.def("_cxxslice", &G3Timestream_getslice, "Slice-only __getitem__")
13861386
.def_property_readonly("elapsed", &G3Timestream_elapsed,
1387-
"Compute elased time array for samples")
1387+
"Compute elapsed time array for samples")
13881388
.def_property_readonly("times", &G3Timestream_times,
13891389
"Compute time vector for samples")
13901390
.def("__len__", &G3Timestream::size)
@@ -1448,7 +1448,7 @@ PYBINDINGS("core", scope) {
14481448
&G3TimestreamMap::SetFLACBitDepth,
14491449
"Bit depth of FLAC compression used for this timestream map.")
14501450
.def_property_readonly("elapsed", &G3TimestreamMap_elapsed,
1451-
"Compute elased time array for samples")
1451+
"Compute elapsed time array for samples")
14521452
.def_property_readonly("times", &G3TimestreamMap_times,
14531453
"Compute time vector for samples")
14541454
;

core/tests/networktest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
for i in range(0, 20):
1010
f = core.G3Frame()
1111
f['Sequence'] = i
12-
f['Data'] = core.G3VectorDouble(numpy.zeros(100000))
12+
f['Data'] = core.G3Timestream(numpy.zeros(100000))
1313
frames.append(f)
1414

1515
print('Port: ', port)

0 commit comments

Comments
 (0)