Revision b357005e60440657321737b1465f3b900a2c9b8c authored by johnpjf on 05 October 2020, 17:19:18 UTC, committed by GitHub on 05 October 2020, 17:19:18 UTC
Clarify that the index is clamped to the bounds of the array when accessing out of bounds.
1 parent d388b62
Raw File
.readthedocs.yml
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details

# Required
version: 2

# Build documentation in the docs/ directory with Sphinx
sphinx:
  configuration: docs/conf.py

# Optionally build your docs in additional formats such as PDF and ePub
formats:
  - htmlzip

# Optionally set the version of Python and requirements required to build your docs
python:
  version: 3.7
  install:
    - requirements: docs/requirements.txt
back to top