You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/QUICKSTART.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -363,7 +363,7 @@ func main() {
363
363
**A**: **No!** This is a pure Go implementation with zero C dependencies. Works on all Go-supported platforms.
364
364
365
365
### Q: What HDF5 versions are supported?
366
-
**A**: The library supports HDF5 format with superblock v0, v2, v3, and v4 (covering HDF5 1.0 through HDF5 2.0.0+).
366
+
**A**: The library supports HDF5 format with superblock v0, v2, and v3 (covering HDF5 1.0 through HDF5 2.0.0).
367
367
368
368
### Q: What datatypes are supported?
369
369
**A**: Fully supported:
@@ -425,7 +425,7 @@ if err != nil {
425
425
426
426
### "unsupported superblock version" error
427
427
428
-
**Solution**: Your HDF5 file uses a format version we don't support yet (v1 or v4+). Please file an issue at https://github.com/scigolib/hdf5/issues with:
428
+
**Solution**: Your HDF5 file uses a format version we don't support yet (v1). Please file an issue at https://github.com/scigolib/hdf5/issues with:
429
429
- HDF5 file (if shareable)
430
430
- Output of `h5dump -H yourfile.h5`
431
431
- How the file was created (tool/library used)
@@ -449,7 +449,7 @@ if err != nil {
449
449
✅ **Ready for production use** if your files contain:
450
450
- Standard datatypes (int, float, string, compound, arrays, enums)
451
451
- GZIP compression
452
-
- Superblock v0, v2, v3, or v4 (HDF5 2.0.0 compatible)
452
+
- Superblock v0, v2, or v3 (HDF5 2.0.0 compatible)
0 commit comments