diff --git a/1FundamentalGroup/Quest0Part2.md b/1FundamentalGroup/Quest0Part2.md
index a06c71e..561d189 100644
--- a/1FundamentalGroup/Quest0Part2.md
+++ b/1FundamentalGroup/Quest0Part2.md
@@ -108,24 +108,24 @@ We proceed in steps :
Skipped step
-- To find out why we put `s b` on the left you can try
- ```agda
- flipIso : Bool ≅ Bool
- flipIso = iso Flip Flip s r where
+ - To find out why we put `s b` on the left you can try
+ ```agda
+ flipIso : Bool ≅ Bool
+ flipIso = iso Flip Flip s r where
- s : section Flip Flip
- s = {!!}
+ s : section Flip Flip
+ s = {!!}
- r : retract Flip Flip
- r = {!!}
- ```
-- Check the goal of the hole `s = {!!}` and try using `C-c C-r`.
- It should give you `λ x → {!!}`.
- This says it's asking for some new proof for each `x : Bool`.
- If you check the goal you can find out what proof it wants
- and that `x : Bool`.
-- To do a proof for each `x : Bool`, we can also just stick
- `x` before the `=` and do away with the `λ`.
+ r : retract Flip Flip
+ r = {!!}
+ ```
+ - Check the goal of the hole `s = {!!}` and try using `C-c C-r`.
+ It should give you `λ x → {!!}`.
+ This says it's asking for some new proof for each `x : Bool`.
+ If you check the goal you can find out what proof it wants
+ and that `x : Bool`.
+ - To do a proof for each `x : Bool`, we can also just stick
+ `x` before the `=` and do away with the `λ`.