From dd2d12721c924486e6f5313cb815441a7d3dd256 Mon Sep 17 00:00:00 2001 From: "Chad B. Hovey" <1473854+hovey@users.noreply.github.com> Date: Mon, 1 Nov 2021 10:01:27 -0600 Subject: [PATCH] Correct "which" versus "that" error. (#3430) --- docs/basics.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/basics.rst b/docs/basics.rst index 0b1d85cfd..e0479b298 100644 --- a/docs/basics.rst +++ b/docs/basics.rst @@ -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