Christopher Sahnwaldt
Christopher Sahnwaldt
Each time someone changes an ignore list through the browser, it is [saved on the server](/dbpedia/extraction-framework/blob/master/server/src/main/scala/org/dbpedia/extraction/server/stats/IgnoreList.scala#L101) in the location where it was checked out from the repo. Then it should...
[Line 159 of adding_models_for_general_use.md](https://github.com/alan-turing-institute/MLJ.jl/blob/dev/docs/src/adding_models_for_general_use.md?plain=1#L159) says: `clean!(clean!(model)) == clean!(model)` I guess the intention is to specify that only the first call of `clean!(model)` may modify `model`, and any subsequent calls must...
- Added tag and attribute name processing to the builder (similar to what the parser does) - Added tests for tag and attribute name processing for the builder (similar to...
The text said `foo[0] = bar` is expanded to `foo.set(bar)`, but `foo.set(0, bar)` would be correct.
A `def` statement defines a function or method. It's not correct to say a `def` statement "is a function" or "is a method call".
**Describe the bug** I tried to use assertions that lead to better failure messages: `Expected 'X' Got 'Y'` instead of just `Assertion: 'X' == 'Y'`. I followed the instructions given...
**Describe the bug** In some cases, running the tests of a Rust kata doesn't work. It only produces the error message `error: could not find Cargo.toml in /workspace or any...
incorrect: `param[0].some_int_ptr = 42` correct: `*param[0].some_int_ptr = 42`