Commit 8b566bfc authored by Kati Paizee's avatar Kati Paizee

Merge branch 'msj-typo-iteration-cadences' into 'master'

Fix typo in iteration cadences feature flag

See merge request gitlab-org/gitlab!65169
parents 377493a9 1e64aa92
...@@ -48,6 +48,10 @@ Iteration cadences automate some common iteration tasks. They can be used to ...@@ -48,6 +48,10 @@ Iteration cadences automate some common iteration tasks. They can be used to
automatically create iterations every 1, 2, 3, 4, or 6 weeks. They can also automatically create iterations every 1, 2, 3, 4, or 6 weeks. They can also
be configured to automatically roll over incomplete issues to the next iteration. be configured to automatically roll over incomplete issues to the next iteration.
With iteration cadences enabled, you must first
[create an iteration cadence](#create-an-iteration-cadence) before you can
[create an iteration](#create-an-iteration).
### Create an iteration cadence ### Create an iteration cadence
Prerequisites: Prerequisites:
...@@ -94,7 +98,7 @@ To create an iteration: ...@@ -94,7 +98,7 @@ To create an iteration:
1. On the top bar, select **Menu > Groups** and find your group. 1. On the top bar, select **Menu > Groups** and find your group.
1. On the left sidebar, select **Issues > Iterations**. 1. On the left sidebar, select **Issues > Iterations**.
1. Select the three-dot menu (**{ellipsis_v}**) > **Add iteration** for the cadence you want to add to. 1. Select **New iteration**.
1. Enter the title, a description (optional), a start date, and a due date. 1. Enter the title, a description (optional), a start date, and a due date.
1. Select **Create iteration**. The iteration details page opens. 1. Select **Create iteration**. The iteration details page opens.
...@@ -191,13 +195,13 @@ can enable it. ...@@ -191,13 +195,13 @@ can enable it.
To enable it: To enable it:
```ruby ```ruby
Feature.enable(:iterations_cadences) Feature.enable(:iteration_cadences)
``` ```
To disable it: To disable it:
```ruby ```ruby
Feature.disable(:iterations_cadences) Feature.disable(:iteration_cadences)
``` ```
<!-- ## Troubleshooting <!-- ## Troubleshooting
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment