You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/docpages/intro.rst
+4-4
Original file line number
Diff line number
Diff line change
@@ -246,7 +246,7 @@ Session management
246
246
247
247
It is highly recommended to initialize a session once and for all to mitigate the initialization cost.
248
248
249
-
Delegate the handling of the lifecycle of a session using a `with` block::
249
+
Delegate the handling of the life-cycle of a session using a `with` block::
250
250
251
251
>>> with WolframLanguageSession('/path/to/kernel-executable') as wl_session:
252
252
... wl_session.StringReverse('abc')
@@ -268,7 +268,7 @@ Manually terminate the session::
268
268
>>> session.terminate()
269
269
270
270
.. note::
271
-
nonterminated sessions usually result in orphan kernel processes, which ultimately lead to the inability to spawn any usable instance at all. Typically, this ends up with a WolframKernelException raised after a failure to communicate with the kernel.
271
+
non-terminated sessions usually result in orphan kernel processes, which ultimately lead to the inability to spawn any usable instance at all. Typically, this ends up with a WolframKernelException raised after a failure to communicate with the kernel.
272
272
273
273
.. note ::
274
274
for in-depth explanations and use cases of local evaluation, refer to :ref:`the advanced usage section<adv-local-evaluation>`.
@@ -486,7 +486,7 @@ Create a :class:`~wolframclient.evaluation.WolframAPICall` targeting the API::
486
486
487
487
>>> api_call = WolframAPICall(session, api)
488
488
489
-
Alternativelly, it is possible to create a :class:`~wolframclient.evaluation.WolframAPICall` directly from a session::
489
+
Alternatively, it is possible to create a :class:`~wolframclient.evaluation.WolframAPICall` directly from a session::
490
490
491
491
>>> api_call = session.wolfram_api_call(api)
492
492
@@ -554,7 +554,7 @@ The :wl:`WXF` format is also supported. It is a binary format, thus not always h
0 commit comments