Dmitry

Results 89 issues of Dmitry

I noticed a issue in the translation section where the "ة" character appeared in the Russian language line, which is an Arabic letter and shouldn't be there. I’ve replaced it...

I noticed a issue in the translation section where the "ة" character appeared in the Russian language line, which is an Arabic letter and shouldn't be there. I’ve replaced it...

I’ve been exploring the project and would like to join the translation team. While reading through the documentation, I noticed a couple of typos that might need correction: 1. **"termpermental"**...

Typo corrections

The typo in the text is in the sentence: *"decimal expansion is not in the original list, the number $y$ is exactly the same as the number $x[2]$." Corrected to:...

noticed a bug in the `must_get_env` function where the error message was showing the value reference (`${!VAR_VALUE}`) instead of the actual variable name (`${VAR_NAME}`). fixed it so that the error...

### Added typo corrections to documentation for the following files `ethereum-org-website/blob/dev/docs/applying-storybook.md` The word "on" should be "one." The corrected sentence is: There may be some exceptions, but generally each component...

documentation 📖
Status: Stale

# Description Spotted a small logic error in `checkCorePackage()`. The code was checking `!modified_core_controllers_tests`, but since it's an array, it should’ve been `!modified_core_controllers_tests.length`. This fixes the issue so the condition...

# Description I’ve updated the regular expression to handle version strings with optional prefixes (like `-beta`) and build suffixes (like `+build`). This fix ensures better compatibility with version formats commonly...

noticed we were using string literals like `"num"` in a place where they shouldn't be. this caused incorrect behavior, so I replaced them with proper variable references.