Skip to content

Commit

Permalink
10-min docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zh217 committed Aug 23, 2018
1 parent cb3586c commit 0ab4f23
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions doc/quick.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"metadata": {
"nbsphinx": "hidden"
},
"outputs": [],
"source": [
"import sys\n",
Expand All @@ -17,7 +19,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"# A very quick introduction"
"# 10 minutes introduction"
]
},
{
Expand Down Expand Up @@ -76,7 +78,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We can call `await c.put(v)` to put value into the channel, `await c.get()` to get value from the channel, and `c.close()` to close the channel:"
"We can call `await c.put(v)` to put value into the channel, `await c.get()` to get value from the channel, `c.close()` to close the channel, and `ac.go(...)` to spawn a coroutine inside another coroutine:"
]
},
{
Expand Down Expand Up @@ -325,7 +327,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"That's all the basics, but there are much more: functional methods, combination patterns, pipelines, thread or process-based parallelism and so on."
"That's all the basics, but there are much more: functional methods, combination patterns, pipelines, thread or process-based parallelism and so on. Read the in-depth tutorial or the API documentation to find out more."
]
}
],
Expand Down

0 comments on commit 0ab4f23

Please sign in to comment.