diff --git a/adev/src/content/tutorials/signals/steps/2-deriving-state-with-computed-signals/README.md b/adev/src/content/tutorials/signals/steps/2-deriving-state-with-computed-signals/README.md
index 8305008d1e5..1076bda7b11 100644
--- a/adev/src/content/tutorials/signals/steps/2-deriving-state-with-computed-signals/README.md
+++ b/adev/src/content/tutorials/signals/steps/2-deriving-state-with-computed-signals/README.md
@@ -66,31 +66,31 @@ This demonstrates how computed signals can perform calculations and combine mult
The template already has placeholders showing "Loading...". Replace them with your computed signals:
-1. For notifications, replace `Loading...` with an @if block:
+1. For notifications, replace `Loading...` with an `@if` block:
-```angular-html
-@if (notificationsEnabled()) {
- Enabled
-} @else {
- Disabled
-}
-```
+ ```angular-html
+ @if (notificationsEnabled()) {
+ Enabled
+ } @else {
+ Disabled
+ }
+ ```
-2. For the message, replace `Loading...` with:
+1. For the message, replace `Loading...` with:
-```angular-html
-{{ statusMessage() }}
-```
+ ```angular-html
+ {{ statusMessage() }}
+ ```
-3. For working hours, replace `Loading...` with an @if block:
+1. For working hours, replace `Loading...` with an `@if` block:
-```angular-html
-@if (isWithinWorkingHours()) {
- Yes
-} @else {
- No
-}
-```
+ ```angular-html
+ @if (isWithinWorkingHours()) {
+ Yes
+ } @else {
+ No
+ }
+ ```
Notice how computed signals are called just like regular signals - with parentheses!
diff --git a/adev/src/content/tutorials/signals/steps/8-using-signals-with-directives/README.md b/adev/src/content/tutorials/signals/steps/8-using-signals-with-directives/README.md
index 5f6dba3abc3..f5e03e5422b 100644
--- a/adev/src/content/tutorials/signals/steps/8-using-signals-with-directives/README.md
+++ b/adev/src/content/tutorials/signals/steps/8-using-signals-with-directives/README.md
@@ -76,7 +76,7 @@ The host bindings automatically re-evaluate when the signals change - just like
Update the app template to demonstrate the reactive directive:
-```angular-ts
+```angular-html
template: `
Directive with Signals