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
- A doc comment can be started with either `///` or `//` and the comments with same prefix are grouped together as a a single docstring. This is a loosed syntax because of Issue 2: the syntax of doc comments is not yet decided.
217
216
- The docstring is in typst syntax and a docstring can only access the public definitions provided by the current package, if it is in a package.
218
217
- The valid places are limited to only before "Let bindings" and at the start of the "Modules" (Files), to ensure simple migration to official syntax in future.
218
+
- A doc comment of let bindings can be started with either `///` or `//` and the comments with same prefix are grouped together as a a single docstring. This is a loosed syntax because of Issue 2: the syntax of doc comments is not yet decided.
219
+
- A doc comment of modules can only start with `///`, because of Issue 2.3: normal comments can occur at the start of the file to include License information.
- A doc comment can be started with either `///` or `//` and the comments with same prefix are grouped together as a a single docstring. This is a loosed syntax because of Issue 2: the syntax of doc comments is not yet decided.
222
221
- The docstring is in typst syntax and a docstring can only access the public definitions provided by the current package, if it is in a package.
223
222
- The valid places are limited to only before "Let bindings" and at the start of the "Modules" (Files), to ensure simple migration to official syntax in future.
223
+
- A doc comment of let bindings can be started with either `///` or `//` and the comments with same prefix are grouped together as a a single docstring. This is a loosed syntax because of Issue 2: the syntax of doc comments is not yet decided.
224
+
- A doc comment of modules can only start with `///`, because of Issue 2.3: normal comments can occur at the start of the file to include License information.
0 commit comments