| Commit message (Collapse) | Author | Age | Lines |
... | |
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Create fsharp-fr.html.markdown
* Add introduction and basics
* Update fsharp-fr.html.markdown
* Fix old translation of progress a bit
* Progress on types
* Add the end part
* Fix verb "créer"
* Improve stuff
* Remove trailing whitespaces
* Move from C# highlighting to F#
* Improve trad
* Relecture
Je doute encore sur les (?)
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Traduccion EN-ES agregar contibudor
* traducir primer parrafo a ES
* traducir segundo parrafo a ES
* traducir tercer parrafo a ES
* traducir parrafo NOTA a ES
* traducir primer parrafo de sintaxis a ES
* traducir primer parrafo de selector a ES
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
* [perl/en] Explain single vs double quotes
Explains an example of variable interpolation and escape codes in a double quoted string.
* add section about interpolating arrays and email in double quotes trap
|
| |
|
|
|
| |
fix description error of "w", "b", "e"
|
| |
|
|
|
|
|
|
|
|
| |
* [c/ru] Fix typo: "большинствоа" -> "большинства"
* [c/ru] Fix typo: "лигическое" -> "логическое"
* [c/ru] Fix typos
|
| |
|
|
|
|
|
|
|
|
| |
* A manual diff with latest English version
* Translation for updated parts
* Translate string literals
|
|
|
|
|
|
| |
* Remove asterisks from code comments
* Add backquote for emphasis as suggested in #2720
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
(#2715)
* Fix wrong mutable struct namee
* Re-added space after ;
|
| |
|
|
|
| |
as shown
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
* create java
* add Farsi java
* add -fa
|
|
|
| |
2^4 == 4^2, 2^3 seems a bit less ambiguous as an example for exponentiation.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Create [pyqt-ru] New translation
* Update [pyqt/ru] pyqt-ru.html.markdown
Update [pyqt/ru] pyqt-ru.html.markdown with the correct filename
* Rename [pyqt-ru]pyqt-ru.html.markdown to pyqt-ru.html.markdown
* Update pyqt-ru.html.markdown
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Updates for the Chapel language tour
The Chapel repository includes variant of this 'language tour', which
was recently modified in various ways:
- *lots* of style/formatting changes more in-line with other programs in
the Chapel repo
- Additional examples of where-clauses and generics
- fixes an incorrect example of a reversed range
- improvements to comments
* Remove backticks left over from rst
* Keep text below 80, correct build steps
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
* Haskell: Updating second headline
* Haskell: Updating second headline (es)
* Haskell: Updating second headline (fr)
* Haskell: Updating second headline (pl)
* Haskell: Updating second headline (pt)
* Haskell: Updating second headline (ro)
* Haskell: Updating second headline (ru)
* Haskell: Updating second headline (cn)
|
| |
|
|
|
| |
property is exposed using setter and getters
|
| |
|
|\ |
|
| | |
|
| | |
|
| |\
| | |
| | |
| | | |
Pulling from master to work on Java[en] inputs
|
| |\ \ |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Makes sure the tests are ran with a working charlock_holmes gem
e.g. prevents this from happening:
https://github.com/brianmario/charlock_holmes/issues/78
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
https://github.com/purescript/purescript/wiki/Differences-from-Haskell
...says:
> Since 0.9.1, the Prelude library does not contain (++) as a second alias for append / (<>) (mappend in Haskell) anymore.
So:
```
-- Concatenate
"such " ++ "amaze" -- "such amaze"
```
...should read:
```
-- Concatenate
"such " <> "amaze" -- "such amaze"
```
|
| | | |
| | | |
| | | |
| | | | |
References:
https://github.com/adambard/learnxinyminutes-docs/issues/2642
|