• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Castle: The best Real-Time/Embedded/HighTech language EVER. Attempt 2


Commit MetaInfo

Revisión2673a8212ce8571d432798e4e5bc8acfda0a4c19 (tree)
Tiempo2024-05-27 01:00:32
AutorAlbert Mietus < albert AT mietus DOT nl >
CommiterAlbert Mietus < albert AT mietus DOT nl >

Log Message

VoidCall: small update in docs

Cambiar Resumen

Diferencia incremental

diff -r 8013dda0e6e9 -r 2673a8212ce8 base_packages/castle-aigr/castle/aigr/statements/simple.py
--- a/base_packages/castle-aigr/castle/aigr/statements/simple.py Mon May 13 22:33:26 2024 +0200
+++ b/base_packages/castle-aigr/castle/aigr/statements/simple.py Sun May 26 18:00:32 2024 +0200
@@ -30,13 +30,12 @@
3030
3131 @dataclass
3232 class VoidCall(_statement):
33- """As a (function) Call is an expression, not a statement, oen can wrap it with ``VoidCall` to make it s statement.
33+ """As a (function) Call is an expression --not a statement--, it should be wrapped in ``VoidCall` to make it s statement.
3434
3535 .. note::
3636
3737 * In CastleCode, this wrapper is not needed
38- * Typical VoidCall is used with named parameters
39-
38+ * Typical VoidCall is used without named parameters
4039 """
4140 _kids = _statement._kids + ('call',)
4241