Geth | doc/main: e381dbecd9 | Pois.Nada++ (committed using GitHub Web editor) | doc/Language/faq.rakudoc Remove deprecated OpaquePointer reference #4602 (#4612) |
00:07 | |
doc/main: 0bce4d200f | Pois.Nada++ (committed using GitHub Web editor) | 4 files standardizes the reference to the metamodel #4201 (#4611) |
00:08 | ||
doc/main: d46a1ee65d | (Will Coleda)++ | 18 files Move many more xt tests to t Now that the github action only runs on changed files, these should be more than fast enough for the action to complete. |
00:22 | ||
doc: coke self-assigned Add a test to verify the glossary is sorted github.com/Raku/doc/issues/4588 schultzdavid++ created pull request #4635: In section `Inheritance_and_multis` of `typesystem.rakudoc`, wording and code example |
00:27 | ||
tbrowder | [Coke]: before i work on yr comments on my PR, i thought we were in agreement about diff between use of '' vs "": use '' when the word or short phrase is followed by a period or comma, or semicolon; othewise use the "" form and put the period, comma, or semi inside. that is what i was changing. | 13:01 | |
ds7832 | Related to this PR of mine, please also take a look at my question in #raku-beginner about the difference of `Int` vs `int`: irclogs.raku.org/raku-beginner/202...html#13:54 | 14:40 | |
Gist of that here: irclogs.raku.org/raku-beginner/gis...14:08-0003 | 14:42 | ||
Sorry, this gist here is better: irclogs.raku.org/raku-beginner/gis...14:08-0003 | 14:44 | ||
Geth | doc: schultzdavid++ created pull request #4636: In `typesystem.rakudoc`, replace ambiguous word "it" by explicit "`.bless`" |
16:51 | |
[Coke] | tbrowder: is that written down in our style guide somewhere? Sorry, I didn't recall that. | 17:43 | |
read docs.raku.org/type/Int vs ... is the doc site super slow right now or is it just me. | 17:45 | ||
vs docs.raku.org/language/nativetypes | 17:47 | ||
int is a native type and use only the required memory. Ints are full on objects with tons of methods. | 17:51 | ||
But, because everything is an object... if you treat an int like an object... it upgrades it to an Int so you can call methods on it. | 17:52 | ||
m; my int $a = 3; my Int $b = 4; dd $a, $b, $a.is-prime, $b.is-prime | 17:53 | ||
m: my int $a = 3; my Int $b = 4; dd $a, $b, $a.is-prime, $b.is-prime | |||
3 | |||
Int $b = 4 | |||
Bool::True | |||
Bool::False | |||
So you could theoretically create native arrays of ints and have them use closer to the amount of memory you'd expect from C as opposed to a full object representation | 17:55 | ||
tbrowder: don't see any mention of quotes under writing-docs - sorry, I don't remember that convo, apologies. | 17:58 | ||
(doesn't mean it didn't happen!) | |||
Geth | doc/main: 2c8e5e9017 | schultzdavid++ (committed using GitHub Web editor) | doc/Language/typesystem.rakudoc In `typesystem.rakudoc`, replace ambiguous word "it" by explicit "`.bless`" (#4636) Currently the text reads as if "it" was referring to "`.new`", which would be the reverse meaning. |
18:01 | |
tbrowder | that's ok fer sure. let me check around some more. my vague mem thinks your thought was not to do a whole big chg but fix bits as we go along. also, we were in locale of BIG doc chgs, etc. | ||
[Coke] | I'm so happy to have the CI testing working again! | 18:02 | |
Geth | doc/main: f91e1e6667 | librasteve++ (committed using GitHub Web editor) | doc/Language/101-basics.rakudoc Add How to call a raku method from another file (#4586) This was raised as a lacking piece of the raku doc seemed best to put in the 101 examples |
18:15 | |
doc/main: c0d552a4b0 | (Will Coleda)++ | 2 files Fix filename oops |
18:21 | ||
doc/main: 325d5ae638 | (Will Coleda)++ | 2 files Editor |
|||
doc/main: edd409c93d | rir++ (committed using GitHub Web editor) | doc/Language/5to6-perlop.rakudoc Split 5to6 section into 3 paragraphs (#4559) * Arrow op: directs to => and shrunk. * Arrow op continues |
18:26 | ||
doc/main: f363a9b51e | (Will Coleda)++ | doc/Language/5to6-perlop.rakudoc whitespace |
18:28 | ||
doc/main: 8a3d220561 | (Will Coleda)++ | doc/Language/exceptions.rakudoc Manually apply PR#3325 "Clarify how control flow is handled in CATCH blocks" RIP Kaiepi++ |
18:35 | ||
doc: schultzdavid++ created pull request #4637: Update README.md: "Deutsche" → "Deutsch" |
19:39 | ||
tbrowder | [Coke] my "bad" memory. i was thinking "consistify" and will change back to the original. (i'm not wild about the Wikipedia standards; my old English teacher had tight standards and wouldn't accept that.) | 19:45 | |
[Coke] | ah, it's a wikipedia thing. Thanks! | 20:12 | |
tbrowder | ok, i’ve tried to do the 2 fixes you wanted. the first one took on yr side, the second on didn’t—no idea why that happens. | 20:16 | |
20:17
librasteve_ joined
|
|||
Geth | doc/main: 4888d19d58 | schultzdavid++ (committed using GitHub Web editor) | README.md Update README.md: "Deutsche" → "Deutsch" (#4637) "Deutsch" is what's natural to use here. (German is my first language.) |
20:17 | |
doc/main: 50e1dfdb4f | (Will Coleda)++ | .github/workflows/test.yml Also test if any markdown files changed |
20:20 | ||
doc/main: 2d943be3dc | (Will Coleda)++ | doc/Type/Test.rakudoc subtest can use either order. modified version of PR#4513 from @JJ |
20:37 | ||
doc: schultzdavid++ created pull request #4638: In section `trait is nodal` of typesystem.rakudoc, add link to definition of term "hyperoperator" |
20:38 | ||
doc/main: ed0d8f9e52 | rir++ (committed using GitHub Web editor) | doc/Type/Date.rakudoc Update Date.rakudoc (#4580) Remove extraneous statement that .raku will not accept numerics. |
20:41 | ||
doc/main: c4a3709f8a | raiph++ (committed using GitHub Web editor) | doc/Type/Routine.rakudoc Further simplify `say` line of `is rw` example in Routine.rakudoc (#4625) |
20:42 | ||
doc/main: 81eb4dc93a | schultzdavid++ (committed using GitHub Web editor) | doc/Language/typesystem.rakudoc In section `trait is nodal` of typesystem.rakudoc, add link to definition of term hyperoperator (#4638) |
20:45 | ||
doc/main: e9d148ff3e | (Will Coleda)++ | util/test-modified.sh Also test "A"dded files! |
21:29 | ||
doc/main: 9a2cfac80b | (Will Coleda)++ | 5 files Manually apply PR#3352 "Document Metamodel::TypePretense and Metamodel::MethodDelegation" RIP Kaiepi++ |
|||
doc/main: 9bfa3cc90d | (Will Coleda)++ | 2 files Manually apply PR#3441 "Revise and add to Attribute's documentation" RIP Kaiepi++ |
22:14 | ||
[Coke] | Applied manually all of Kaiepi's raku/doc PRs today. So sorry it took so long. The last time I tried to do that, it seemed overwhelming, but it was very straightforward today. | 22:20 | |
Geth | doc/main: 8b677e166f | schultzdavid++ (committed using GitHub Web editor) | 2 files Use the TV/Netflix analogy on Supplies also on the dedicated page /type/Supply. (Plus one other small proposal) (#4622) * Update control.rakudoc .char --> .chars, as that's the name of the char counting routine * Copy the useful TV/Netflix analogy from /language/concurrency ... (6 more lines) |
23:10 | |
doc/main: 24355d01d1 | schultzdavid++ (committed using GitHub Web editor) | doc/Language/typesystem.rakudoc In section `Inheritance_and_multis` of `typesystem.rakudoc`, clarify wording and code example (#4635) * In section `Inheritance_and_multis` of `typesystem.rakudoc`, clarify wording and code Replace the ambiguous "does not compete with" with a phrase that's clearer and easier to parse. In the code, change class names `A` and `B` to `Parent` and `Child`, and add comment that `int` is a subclass of `Int` (which is important to know in order to understand what goes on). * Update typesystem.rakudoc: Change example types to `Numeric` & `Int` |
23:11 | ||
[Coke] | I love that there is a way to sort PRs by "least commented on" (because those are likely easier to apply) | 23:12 | |
Geth | doc/main: 0bc0b8b0c4 | (Tom Browder)++ (committed using GitHub Web editor) | doc/Language/setbagmix.rakudoc Fix setbagmix (#4633) * Add missing ASCII examples for the Unicode Set, Bag, and Mix operators + addresses doc issue #4629 |
23:14 | |
doc/main: 07c904c9a8 | (Will Coleda)++ | 2 files correct wikipedia reference link Manually apply from PR#4579 tbrowder++ |
23:20 | ||
[Coke] | Down to 3 PRs. | ||
tbrowder | thanks, [Coke] !!! | 23:32 | |
for saving my shorts! 😁 | |||
Geth | doc/main: d3564fb194 | (Will Coleda)++ | 2 files Make these two paragraphs conform. |
23:36 | |
[Coke] | Sorry most of the PRs have been sitting idle for so long. | ||
Geth | doc/main: 2b0770dab1 | (Will Coleda)++ | doc/Type/Str.rakudoc Remove perldoc style CAPS args. Closes #4607 |
23:45 | |
doc/main: 5d6f5c7873 | (Will Coleda)++ | doc/Language/glossary.rakudoc Add a glossary entry for ecosystem Close #4583 |
23:50 | ||
doc/main: 1ec4e7f1f4 | (Will Coleda)++ | doc/Type/IO/Handle.rakudoc Note readchars issue Closes #4523 |
23:54 |