From 2d1a297d9b0495bd355756eb8d9f61ddff96174b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20Wiik=20=C3=85nes?= Date: Thu, 12 Jan 2023 11:43:07 +0100 Subject: [PATCH] Change wording in data module doc following SHA256 -> MD5 change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Håkon Wiik Ånes --- doc/dev/adding_to_data_module.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/dev/adding_to_data_module.rst b/doc/dev/adding_to_data_module.rst index d2785171..fc03d79a 100644 --- a/doc/dev/adding_to_data_module.rst +++ b/doc/dev/adding_to_data_module.rst @@ -6,10 +6,10 @@ Adding data to the data module Example datasets used in the documentation and tests are included in the :mod:`kikuchipy.data` module via the `pooch `__ Python library. These are listed in a file registry (``kikuchipy.data._registry.py``) -with their file verification string (hash, SHA256, obtain with e.g. -``sha256sum ``) and location, the latter potentially not within the package but -from the `kikuchipy-data `__ repository or -elsewhere, since some files are considered too large to include in the package. +with their file verification string (hash, MD5, obtain with e.g. ``md5sum ``) and +location, the latter potentially not within the package but from the `kikuchipy-data +`__ repository or elsewhere, since some files +are considered too large to include in the package. If a required dataset isn't in the package, but is in the registry, it can be downloaded from the repository when the user passes ``allow_download=True`` to e.g.