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
Confirmed (using the command below) that this branch now contains only
changes to doc comments, changes to // comments where content was moved
into or out of a doc comment, and one spelling correction to code.
% git diff origin/main... |
grep -v '^+ *///\|- *///' |
grep -v '^@@' |
grep -v '^ ' |
grep -v '^+++\|^---' |
grep -v '^diff --git' |
grep -v '^index '
+ // Individual public API functions are in the generated Variadics.swift file.
+// For now, we use String as the source while prototyping...
+
+ // NOTE: Currently, this means we have raw quotes.
+ // Better would be to have real Swift string delimiter parsing logic.
+
+ // NOTE: traditional comments are not nested. Currently, we are neither.
+ // Traditional comments can't have `)`, not even escaped in them either, we
+ // can. Traditional comments can have `*/` in them, we can't without
+ // escaping. We don't currently do escaping.
+
- // Finish, flush, and clear. Returns the rendered output
+ // Finish, flush, and clear.
+ //
+ // - Returns: The rendered output.
+ // Note: The `Script` enum includes the "meta" script type "Katakana_Or_Hiragana", which
+ // isn't defined by https://www.unicode.org/Public/UCD/latest/ucd/Scripts.txt,
+ // but is defined by https://www.unicode.org/Public/UCD/latest/ucd/PropertyValueAliases.txt.
+ // We may want to split it out, as it's the only case that is a union of
+ // other script types.
+
+// TODO: These should become aliases for the Block (blk) Unicode character
+// property.
+
- // Ensures `.0` always refers to the whole match.
- // Allows `.0` when `Match` is not a tuple.
- func withInversion(_ invertion: Bool) -> Self {
+ func withInversion(_ inversion: Bool) -> Self {
- if invertion {
+ if inversion {
0 commit comments