summaryrefslogtreecommitdiff
path: root/docs/internals/contributing/triaging-tickets.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/internals/contributing/triaging-tickets.txt')
-rw-r--r--docs/internals/contributing/triaging-tickets.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/internals/contributing/triaging-tickets.txt b/docs/internals/contributing/triaging-tickets.txt
index 950c03e4f4..8341ee0e3c 100644
--- a/docs/internals/contributing/triaging-tickets.txt
+++ b/docs/internals/contributing/triaging-tickets.txt
@@ -420,9 +420,9 @@ inadvertent side-effect. Here's how you can determine this.
Begin by writing a regression test for Django's test suite for the issue. For
example, we'll pretend we're debugging a regression in migrations. After you've
-written the test and confirmed that it fails on the latest master, put it in a
-separate file that you can run standalone. For our example, we'll pretend we
-created ``tests/migrations/test_regression.py``, which can be run with::
+written the test and confirmed that it fails on the latest main branch, put it
+in a separate file that you can run standalone. For our example, we'll pretend
+we created ``tests/migrations/test_regression.py``, which can be run with::
$ ./runtests.py migrations.test_regression