Fix doubled words in three docstrings - #6129
Conversation
"the the expected ones" in test_chef_pipeline, "data for for the node" in views/internal, and "Check that set set a cache-control" in test_gcs_storage, which was missing a word rather than repeating one.
|
👋 Hi @marekl11, thanks for contributing! For the review process to begin, please verify that the following is satisfied:
Also check that issue requirements are satisfied & you ran Pull requests that don't follow the guidelines will be closed. Reviewer assignment can take up to 2 weeks. |
Three docstrings with a repeated word: "are the the expected ones" in
test_chef_pipeline.py and "children data for for the node" in
views/internal.py. The third, in test_gcs_storage.py, read "Check that set
set a cache-control of private" - that one was missing a word rather than
repeating one, so it now reads "Check that we set a cache-control".
AI usage
docstrings and comments, and to apply the resulting one-word edits.
the search at face value, and confirmed none of the three strings is
asserted on by a test or used as a translation key.
"Check that set set a cache-control of private" is a missing word, not
a repeated one, so it now reads "Check that we set a cache-control".
doubled-word search returns three different kinds of hit - real
duplicates, missing words, and deliberate repetition - so the
candidates have to be read individually. Here one of three was not a
plain duplicate.
Docstrings only; no code paths, tests or user-facing text change.