Skip to content

Commit dfcd3a1

Browse files
committed
Updates
1 parent 4960068 commit dfcd3a1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

slides.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ template = t"Hello, {friend}!" # 😊
119119

120120
---
121121

122-
# T-strings **aren't** _quite_ like jinja
122+
# T-strings **aren't** like jinja
123123

124124
<div v-click><p>They're <strong>eagerly evaluated</strong></p></div>
125125

@@ -129,7 +129,7 @@ template = t"Hello, {friend}!" # 😊
129129

130130
---
131131

132-
# T-strings **aren't** _quite_ like jinja <span class="slide-count">(2)</span>
132+
# T-strings **aren't** like jinja <span class="slide-count">(2)</span>
133133

134134
````md magic-move
135135
```python314
@@ -148,7 +148,7 @@ template_2 = greeting("Dave")
148148

149149
---
150150

151-
# But t-strings are **different**:
151+
# T-strings are **not** like f-strings:
152152

153153
````md magic-move
154154
```python314
@@ -179,7 +179,7 @@ type(t"Hello, {name}!")
179179

180180
---
181181

182-
# T-strings are **not** strings
182+
# T-strings are **not strings**
183183

184184
<div v-click><p>You write them like they <i>are</i>...</p></div>
185185
<div v-click>
@@ -191,7 +191,7 @@ t"This is not a string"
191191

192192
---
193193

194-
# T-strings are **not** strings <span class="slide-count">(2)</span>
194+
# T-strings are **not strings** <span class="slide-count">(2)</span>
195195

196196
````md magic-move
197197
```python314
@@ -653,7 +653,7 @@ def user_page(uid: str):
653653

654654
# Down the rabbit hole
655655

656-
We saw a simple example with HTML:
656+
We wrote a simple example with HTML:
657657

658658
<div class="smallest">
659659
```python314

0 commit comments

Comments
 (0)