We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7e7a6e commit 8b1944dCopy full SHA for 8b1944d
.github/workflows/ci.yml
@@ -667,7 +667,7 @@ jobs:
667
668
669
# This verifies that the documentation is not horribly broken, and does a
670
- # basic sanity check on the SDist.
+ # basic validation check on the SDist.
671
doxygen:
672
name: "Documentation build test"
673
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