We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a27b023 commit a561d02Copy full SHA for a561d02
.github/workflows/ci.yml
@@ -668,7 +668,7 @@ jobs:
668
669
670
# This verifies that the documentation is not horribly broken, and does a
671
- # basic sanity check on the SDist.
+ # basic validation check on the SDist.
672
doxygen:
673
name: "Documentation build test"
674
runs-on: ubuntu-latest
docs/advanced/pycpp/numpy.rst
@@ -87,7 +87,7 @@ buffer objects (e.g. a NumPy matrix).
87
/* Request a buffer descriptor from Python */
88
py::buffer_info info = b.request();
89
90
- /* Some sanity checks ... */
+ /* Some basic validation checks ... */
91
if (info.format != py::format_descriptor<Scalar>::format())
92
throw std::runtime_error("Incompatible format: expected a double array!");
93
0 commit comments