Commit Graph

341 Commits

Author SHA1 Message Date
Boris Verkhovskiy
3e687f1a8c Remove leading and trailing empty lines in code blocks 2024-04-06 08:33:50 -07:00
Boris Verkhovskiy
f8475ed139 Github -> GitHub 2024-04-04 04:06:33 -07:00
Boris Verkhovskiy
01bbd084f1 Add empty lines before code blocks
otherwise they don't render as blocks
2024-04-04 04:02:42 -07:00
Boris Verkhovskiy
787e9710b9 Syntax highlighting 2024-04-03 04:16:08 -07:00
Boris Verkhovskiy
f5516715c0 [pyqt/*] fix formatting
rouge doesn't work with uppercase language names, also cleaned up whitespace
2024-04-03 04:13:28 -07:00
Boris Verkhovskiy
365200ce0a Fix syntax highlighting for Markdown 2024-04-03 04:05:40 -07:00
Boris Verkhovskiy
616e40816d
Merge branch 'master' into elixir-casing 2024-04-03 02:02:49 -07:00
Kelli Rockwell
c2878077cb
Update Go official site links from golang.org -> go.dev (#4871) 2024-04-01 09:35:55 +02:00
qlikwer
3914133997
corrected an error in the number pi (#4839)
* Update go-de.html.markdown

corrected an error in the number pi

* Update go.html.markdown

corrected an error in the number pi

* Update go-pt.html.markdown

corrected an error in the number pi

* Update go-hu.html.markdown

corrected an error in the number pi

* Update go-cn.html.markdown

corrected an error in the number pi

* Update go-kr.html.markdown

corrected an error in the number pi

* Update go-ca.html.markdown

corrected an error in the number pi

* Update go-es.html.markdown

corrected an error in the number pi

* Update go-fi.html.markdown

corrected an error in the number pi

* Update go-fr.html.markdown

corrected an error in the number pi

* Update go-ru.html.markdown

corrected an error in the number pi

* Update go-it.html.markdown

corrected an error in the number pi

* Update go.html.markdown

corrected an error in the number pi
2024-02-12 13:18:44 +01:00
Adrien LUDWIG
62b5f91d72
[awk] Fix wrong example output (in all languages) (#4750) 2023-09-08 13:27:46 +08:00
Joel Jucá
3e22775a64
Fix bad case in the Elixir language 2023-04-27 17:09:38 -03:00
wang sy
5f941a4dee Fix broken 4clojure links 2023-01-14 13:42:05 +08:00
zjzj1996
fd802bfd43 fix:typo 2023-01-11 15:10:03 +08:00
Marcel Ribeiro Dantas
2af9889e48
Merge pull request #4547 from louisportay/yaml_null_value
[yaml/en] [yaml/fr] add another example for YAML null value
2022-12-06 10:02:59 -03:00
Norwid Behrnd
7a2f6ddacd keep introducing comments close to their object
In previous commits, some introducing comments ended just in the
line ahead of their example; others did not.  For consistency,
comments are now back to back with their example.
2022-11-23 22:01:08 +01:00
Norwid Behrnd
27f052e68d break overly long lines
Critical threshold for a line are 80 characters maximum.
2022-11-23 21:26:20 +01:00
Norwid Behrnd
38abd4298c run sed -i 's/ *$//' awk-fr.html.markdown
Remove of trailing spaces.
2022-11-23 21:17:18 +01:00
Louis PORTAY
d2d10c7050 [yaml/en] add another example for YAML null value 2022-11-21 14:24:01 +01:00
Yann Defretin
ab877e93eb
[javascript/fr] Fix equality comparison example (#4540) 2022-11-11 17:49:24 +01:00
Mr Alexandre ELISÉ
9912e42945
Hi, I might have found a typo (#4528)
Hi, French is my native language and I think I might have found a typo regarding a pronoun in French in the original text it says 'la première élément' but seems to have a typo it should be 'le premier élément'. Just trying to be helpful. Enjoy your day. BTW I like your awesome website https://learnxinyminutes.com thanks for this cool initiative.
2022-10-31 03:15:26 +01:00
Marcel Ribeiro-Dantas
3e0a35ad37
Update c# to upercase C# 2022-08-01 22:40:55 +02:00
Marcel Ribeiro-Dantas
7f60e471fc
Update c++ to upercase C++ 2022-08-01 22:39:47 +02:00
nbehrnd
a18b5e2e87
[AWK/fr] correction orthography (#4445)
* [awk-fr], spell check, errors spot by @vendethiel

The commit accounts for errors in orthography identified by
@vendethiel.[1]

[1] https://github.com/adambard/learnxinyminutes-docs/pull/4440

* [awk-fr] spell check, own revision

Additional spell check.
2022-07-12 13:32:27 +02:00
Norwid Behrnd
c68805c2cb shorten overly long lines
Following the recommendation to not exceed 80 characters/line.
2022-07-11 14:46:32 +02:00
Norwid Behrnd
b20081e0f8 correct example about gsub
This corrects an error spot in the English edition of the document
spot earlier[1] and equally present in the French one.

[1] https://github.com/adambard/learnxinyminutes-docs/pull/4437
2022-07-11 14:12:16 +02:00
mphschmitt
38edd49d66
[set-theory.fr-fr] Fix multiple typos and remove english words. (#4435) 2022-07-08 22:06:22 +02:00
Mathias Schmitt
c373aa6bb8 [rust/fr-fr] Fix typo. 2022-07-08 20:35:37 +02:00
Marcel Ribeiro-Dantas
a43b26041d
Remove GitGuy dead link from git material (close #4314) 2022-07-08 15:11:23 +02:00
mphschmitt
3692c42711
[set-theory/fr] Fix multiple errors. (#4361)
Multiple errors prevented the translation from being displayed:
  * contributors was indented with a tab instead of two spaces.
  * the category was not the same as the original english file.
  * a code block was closed at the end of the file, but never
    opened.
2022-07-06 23:57:16 +02:00
mphschmitt
9694d4d960
[rust/fr] Update language name: rust -> Rust (#4308)
The name was different in english and in french, which prevented
the french translation from being displayed.
2022-07-06 23:56:27 +02:00
Ay355
9552f2a1fe
[rust/all] Remove .iter() on array example (#4230)
As of Rust 1.53.0, arrays implement the IntoIterator trait, making .iter() on an array unnecessary
2021-11-01 22:27:42 +01:00
kieutrang1729
a1286822de
[set-theory/fr] Added French translation for Set theory (#4168)
* Update set-theory.html.markdown

Fixed a minor typo.

* Add files via upload

Added a french translation for set theory.

* Add suggested changes

J'ai fait presque tous les changements suggérés.

* Fix spacing before semicolons
2021-07-11 16:28:54 +02:00
tobihans
e4d92f0a65
[asymptotic-notation/fr] fix small typos (#4186) 2021-07-03 14:54:44 +02:00
Борис Верховский
a502f8d723
Rename OS X to macOS (#4166) 2021-05-25 13:42:50 +02:00
Vincent Kosciuszko
f4c12e4f11
[java/fr] Fix typo (#4165)
* Fixing typo in java-fr

jours de la semaine = day of the week.
jours de l'année = day of the year.

* Update java-fr.html.markdown

* Update java-fr.html.markdown
2021-05-13 16:23:16 +02:00
Spencer Burris
5d2d1cf77c
[typescript/fr] + [typescript/es] + [typescript/pt-br] Fix broken JS link (#4135)
* [typescript/es] Fix broken link to JS page

* [typescript/fr] Fix broken link to JS page

* [typescript/pt-br] Fix broken JS link
2021-03-06 13:45:26 +01:00
Gabriel Le Breton
cd8b941f92
Fix yet another french typo :) 2020-12-06 20:11:40 -05:00
Gabriel Le Breton
ead8ac5306
Fix another small french typo 2020-12-06 19:59:04 -05:00
Gabriel Le Breton
017a58b078
Fix a small french typo 2020-12-06 19:56:35 -05:00
kevinnls
dd6624856b
fix unrendered md in markdown-fr (#3995)
code demo in the hyperliens section
was not rendered in the built site
converted from md ``` syntax to plain html <code>
2020-09-29 14:51:32 +02:00
kevinnls
c4175c9f62
traduction
i forgot this was the french doc
2020-08-20 13:24:05 +05:30
kevinnls
f92694aac9
[js/fr] fix for...of loop
Co-authored-by: Carl20cent <carl.vincent38@gmail.com>

bump changed section variable declarations to ES6

Update fr-fr/javascript-fr.html.markdown
2020-08-20 13:09:53 +05:30
Max Schumacher
b9fa890a04
Merge pull request #3935 from bzg/master
[fr-fr/elisp-fr.html.markdown] Fix typos
2020-08-17 16:12:19 +02:00
Max Schumacher
dc0d862ba9
Merge pull request #3903 from glecetre/patch-1
[f#/fr] Add missing translation
2020-07-08 10:03:11 +02:00
Max Schumacher
93ca3f662a
Merge pull request #3886 from blankoworld/patch-1
[crystal/fr] Minor fix about "on/ont"
2020-07-07 15:35:34 +02:00
sumanstats
0ecb826429 Perl6 to Raku and many more
+ As the Perl 6 is renamed to raku, it is good to reflect that https://github.com/Raku/problem-solving/blob/master/solutions/language/Path-to-Raku.md

+ perl6.org is now raku.org
+ change references of perl 6 to raku
+ rename file perl6-pod.html.markdown to raku-pod.html.markdown
+ Perl refers to Perl 5, there is no ambiguity after rename of Perl6 to
  Raku, use Perl only to refer to Perl 5
+ fix links inside raku.html.markdown
2020-06-10 16:33:01 +05:45
Bastien Guerry
2776a32250 fr-fr/elisp-fr.html.markdown: Fix typos
Also use "motif" as a translation for "pattern", but still mention
"pattern" as it is commonly understood.
2020-05-24 06:35:39 +02:00
Guillaume Lecêtre
d5dab5759d
Update fsharp-fr.html.markdown
Translate untranslated comment and explicitly cite currying
2020-04-12 15:49:21 +02:00
Olivier DOSSMANN
89fa0eecf1
Minor fix about "on/ont" 2020-03-15 20:36:24 +01:00
Adam Bard
0a0a40dc2d
Merge pull request #3856 from sshine/make-python3-default
[Python] Make Python 3 default
2020-02-13 22:00:05 -08:00