From 1b3985849f8363f29a9848bdd75c608b7014c766 Mon Sep 17 00:00:00 2001 From: He Sichao <1310722434@qq.com> Date: Thu, 23 Nov 2023 16:23:43 +0800 Subject: [PATCH] [docs] Fix typo in docs --- docs/core_concept/brainpy_dynamical_system.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core_concept/brainpy_dynamical_system.ipynb b/docs/core_concept/brainpy_dynamical_system.ipynb index ab7f7d0a2..b8151486d 100644 --- a/docs/core_concept/brainpy_dynamical_system.ipynb +++ b/docs/core_concept/brainpy_dynamical_system.ipynb @@ -124,7 +124,7 @@ "We call `s` as shared arguments because they are same and shared for all nodes/layers. On the contrary, different nodes/layers have different input `x`.\n", "\n", "Here, it is necessary to explain the usage of ``bp.share``.\n", - "- ``bp.share.save( )``: The function saves shared arguments in the global context. User can save shared arguments in tow ways, for example, if user want to set the current time ``t=100``, the current time step ``dt=0.1``,the user can use ``bp.share.save(\"t\",100,\"dt\",0.1)`` or ``bp.share.save(t=100,dt=0.1)``.\n", + "- ``bp.share.save( )``: The function saves shared arguments in the global context. User can save shared arguments in two ways, for example, if user want to set the current time ``t=100``, the current time step ``dt=0.1``,the user can use ``bp.share.save(\"t\",100,\"dt\",0.1)`` or ``bp.share.save(t=100,dt=0.1)``.\n", " \n", "- ``bp.share.load( )``: The function gets the shared data by the ``key``, for example, ``bp.share.load(\"t\")``.\n", " \n",