Skip to content

Commit dbdc5c6

Browse files
authored
Update docs in brainpy core concept (#317)
Update docs in brainpy core concept.
2 parents 6b86740 + 11a2ab3 commit dbdc5c6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/core_concept/brainpy_transform_concept.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@
260260
"cell_type": "markdown",
261261
"metadata": {},
262262
"source": [
263-
"In the above example, ``Linear`` object has two ``Variable``: *W* and *b*. The ``net`` we defined is further composed of two ``Linear`` objects. We can except that four variables can be retrieved from it. "
263+
"In the above example, ``Linear`` object has two ``Variable``: *W* and *b*. The ``net`` we defined is further composed of two ``Linear`` objects. We can expect that four variables can be retrieved from it."
264264
]
265265
},
266266
{
@@ -486,7 +486,7 @@
486486
"metadata": {},
487487
"source": [
488488
"Note that, when using `to_object()`, we need to explicitly declare all `BrainPyObject` and `Variable` used in this Python function. \n",
489-
"Due to the recersively retrieval property of `BrainPyObject`, we only need to specify the latest composition object. \n",
489+
"Due to the recursive retrieval property of `BrainPyObject`, we only need to specify the latest composition object.\n",
490490
"\n",
491491
"In the above `loss` object, we do not need to specify two ``Linear`` object. Instead, we only need to give the top level object ``net`` into ``to_object()`` transform. \n",
492492
"\n",
@@ -512,7 +512,7 @@
512512
"metadata": {},
513513
"source": [
514514
"BrainPy object-oriented transformations are designed to work on ``BrainPyObject``. \n",
515-
"These transforamtions inclue autograd ``brainpy.math.grad()`` and JIT ``brainpy.math.jit()``. "
515+
"These transformations include autograd ``brainpy.math.grad()`` and JIT ``brainpy.math.jit()``."
516516
]
517517
},
518518
{
@@ -653,4 +653,4 @@
653653
},
654654
"nbformat": 4,
655655
"nbformat_minor": 1
656-
}
656+
}

0 commit comments

Comments
 (0)