Skip to content

Commit

Permalink
Remove idioms in code comments (pybind#3809)
Browse files Browse the repository at this point in the history
  • Loading branch information
JonTriebenbach authored and Ralf W. Grosse-Kunstleve committed Mar 18, 2022
1 parent a27b023 commit a561d02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ jobs:


# This verifies that the documentation is not horribly broken, and does a
# basic sanity check on the SDist.
# basic validation check on the SDist.
doxygen:
name: "Documentation build test"
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion docs/advanced/pycpp/numpy.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ buffer objects (e.g. a NumPy matrix).
/* Request a buffer descriptor from Python */
py::buffer_info info = b.request();
/* Some sanity checks ... */
/* Some basic validation checks ... */
if (info.format != py::format_descriptor<Scalar>::format())
throw std::runtime_error("Incompatible format: expected a double array!");
Expand Down

0 comments on commit a561d02

Please sign in to comment.