Correct "which" versus "that" error. (#3430)

This commit is contained in:
Chad B. Hovey 2021-11-01 10:01:27 -06:00 committed by GitHub
parent e7c9753f1d
commit dd2d12721c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -109,7 +109,7 @@ a file named :file:`example.cpp` with the following contents:
PYBIND11_MODULE(example, m) {
m.doc() = "pybind11 example plugin"; // optional module docstring
m.def("add", &add, "A function which adds two numbers");
m.def("add", &add, "A function that adds two numbers");
}
.. [#f1] In practice, implementation and binding code will generally be located