doc/treewide: replace "in order to" with "to"

Fixes a styleguide violation (doc/styleguide.md, "Filler Words and
Weak Phrases"). Release notes excluded.
This commit is contained in:
Johannes Kirschbauer
2026-05-24 14:40:47 +02:00
parent 0ac780c690
commit 66241985dc
14 changed files with 22 additions and 22 deletions

View File

@@ -1640,7 +1640,7 @@ looked at how you can create environments in which specified packages are
available.
At some point you'll likely have multiple packages which you would
like to be able to use in different projects. In order to minimise unnecessary
like to be able to use in different projects. To minimise unnecessary
duplication we now look at how you can maintain a repository with your
own packages. The important functions here are `import` and `callPackage`.
@@ -1892,7 +1892,7 @@ pkgs.mkShell rec {
pythonPackages.numpy
pythonPackages.requests
# In this particular example, in order to compile any binary extensions they may
# In this particular example, to compile any binary extensions they may
# require, the Python modules listed in the hypothetical requirements.txt need
# the following packages to be installed locally:
taglib
@@ -2132,7 +2132,7 @@ See also [contributing section](#contributing).
### Are Python interpreters built deterministically? {#deterministic-builds}
The Python interpreters are now built deterministically. Minor modifications had
to be made to the interpreters in order to generate deterministic bytecode. This
to be made to the interpreters to generate deterministic bytecode. This
has security implications and is relevant for those using Python in a
`nix-shell`.