We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dcd8f74 commit 0656a76Copy full SHA for 0656a76
docs/README.md
@@ -40,17 +40,17 @@ We've reimagined data engineering for the data science era. Prefect is a new wor
40
Read the [docs](/introduction.html); get the [code](/agreement.html); ask us [anything](mailto:help@prefect.io)!
41
42
43
-### Hello, world!
+### Hello, world! 👋
44
45
```python
46
from prefect import task, Flow
47
48
@task
49
def say_hello():
50
- print("Hello, world! 👋")
+ print("Hello, world!")
51
52
with Flow('My First Flow') as flow:
53
say_hello()
54
55
-flow.run() # "Hello, world! 👋"
+flow.run() # "Hello, world!"
56
```
0 commit comments