diff --git a/katas/content/getting_started/flip_qubit/index.md b/katas/content/getting_started/flip_qubit/index.md index 3ba7d6452e..e10739756b 100644 --- a/katas/content/getting_started/flip_qubit/index.md +++ b/katas/content/getting_started/flip_qubit/index.md @@ -1,8 +1,8 @@ -Exercises are problems that you have to solve by writing Q# code. In each exercise, you will be presented with placeholder code that you will have to fill in with the correct solution. +Exercises are problems that you have to solve by writing Q# code. In each exercise, you'll be presented with placeholder code that you'll have to fill in with the correct solution. **Input:** A qubit in the $\ket{0}$ state. -**Goal:** Apply the X gate to the qubit, i.e., perform a "bit flip" to set the qubit into the $\ket{1}$ state. +**Goal:** Apply the X gate to the qubit, that is, perform a "bit flip" to set the qubit into the $\ket{1}$ state.
Need a hint? diff --git a/katas/content/getting_started/flip_qubit/solution.md b/katas/content/getting_started/flip_qubit/solution.md index fa17f7cb6d..9891c8726a 100644 --- a/katas/content/getting_started/flip_qubit/solution.md +++ b/katas/content/getting_started/flip_qubit/solution.md @@ -1,4 +1,4 @@ -Once you have successfully implemented a solution or if you are stuck on a problem, you can consult our reference solution, which contains additional details on how to solve the exercise. +Once you've successfully implemented a solution or if you're stuck on a problem, you can consult the reference solution, which contains additional details on how to solve the exercise. For this exercise, you can solve the problem by simply using Q#'s `X` operation on the input qubit, which will perform a "bit flip" and set the qubit into the $\ket{1}$ state.