Skip to content

Commit

Permalink
Clean up various errors
Browse files Browse the repository at this point in the history
  • Loading branch information
adambard committed Feb 13, 2016
1 parent 5aa692f commit f3b10be
Show file tree
Hide file tree
Showing 13 changed files with 25 additions and 259 deletions.
2 changes: 1 addition & 1 deletion edn.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Clojure, there are implementations of EDN for many other languages.
The main benefit of EDN over JSON and YAML is that it is extensible. We
will see how it is extended later on.

```Clojure
```clojure
; Comments start with a semicolon.
; Anything after the semicolon is ignored.

Expand Down
3 changes: 2 additions & 1 deletion fr-fr/HTML-fr.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ contributors:
- ["Christophe THOMAS", "https://github.com/WinChris"]
lang: fr-fr
---

HTML signifie HyperText Markup Language.
C'est un langage (format de fichiers) qui permet d'écrire des pages internet.
C’est un langage de balisage, il nous permet d'écrire des pages HTML au moyen de balises (Markup, en anglais).
Expand All @@ -17,7 +18,7 @@ Comme tous les autres langages, HTML a plusieurs versions. Ici, nous allons parl
Cet article porte principalement sur la syntaxe et quelques astuces.


```HTML
```html
<!-- Les commentaires sont entouré comme cette ligne! -->

<!-- #################### Les balises #################### -->
Expand Down
12 changes: 6 additions & 6 deletions fr-fr/d.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ translators:
lang: fr-fr
---

```d
```c
// Commençons par un classique
module hello;

Expand All @@ -30,7 +30,7 @@ D est activement développé par de nombreuses personnes très intelligents, gui
[Andrei Alexandrescu](https://fr.wikipedia.org/wiki/Andrei_Alexandrescu).
Après cette petite introduction, jetons un coup d'oeil à quelques exemples.
```d
```c
import std.stdio;
void main() {
Expand Down Expand Up @@ -75,7 +75,7 @@ On peut définir de nouveaux types avec les mots-clés `struct`, `class`,
`union` et `enum`. Ces types sont passés au fonction par valeur (ils sont copiés)
De plus, on peut utiliser les templates pour rendre toutes ces abstractions génériques.

```d
```c
// Ici, 'T' est un paramètre de type. Il est similaire au <T> de C++/C#/Java.
struct LinkedList(T) {
T data = null;
Expand Down Expand Up @@ -140,7 +140,7 @@ une méthode qui peut se comporter comme une lvalue. On peut donc utiliser
la syntaxe des structures classiques (`struct.x = 7`) comme si il
s'agissait de méthodes getter ou setter.
```d
```c
// Considérons une classe paramétrée avec les types 'T' et 'U'
class MyClass(T, U) {
T _data;
Expand Down Expand Up @@ -212,7 +212,7 @@ de premier ordre, les fonctions `pure` et les données immuables.
De plus, tout vos algorithmes fonctionelles favoris (map, reduce, filter)
sont disponibles dans le module `std.algorithm`.

```d
```c
import std.algorithm : map, filter, reduce;
import std.range : iota; // construit un intervalle excluant la dernière valeur.

Expand Down Expand Up @@ -242,7 +242,7 @@ est de type A, comme si c'était une méthode de A.
J'aime le parallélisme. Vous aimez les parallélisme ? Bien sur que vous aimez ça
Voyons comment on le fait en D !

```d
```c
import std.stdio;
import std.parallelism : parallel;
import std.math : sqrt;
Expand Down
4 changes: 2 additions & 2 deletions fr-fr/make-fr.html.markdown
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
language: make
contributors:
- ["Robert Steed", "https://github.com/robochat"]
- ["Robert Steed", "https://github.com/robochat"]
translators:
- ["altaris", "https://github.com/altaris"]
- ["altaris", "https://github.com/altaris"]
filename: Makefile-fr
lang: fr-fr
---
Expand Down
3 changes: 1 addition & 2 deletions fr-fr/objective-c-fr.html.markdown
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
---

language: Objective-C
contributors:
- ["Eugene Yagrushkin", "www.about.me/yagrushkin"]
Expand All @@ -9,7 +8,6 @@ translators:
- ["Yannick Loriot", "https://github.com/YannickL"]
filename: LearnObjectiveC-fr.m
lang: fr-fr

---

L'Objective-C est un langage de programmation orienté objet réflexif principalement utilisé par Apple pour les systèmes d'exploitations Mac OS X et iOS et leurs frameworks respectifs, Cocoa et Cocoa Touch.
Expand Down Expand Up @@ -519,6 +517,7 @@ __unsafe_unretained NSArray *unsafeArray; // Comme __weak, mais la variable n'es
// l'objet est supprimé

```
## Lectures Complémentaires
[La Page Wikipedia de l'Objective-C](http://fr.wikipedia.org/wiki/Objective-C)
Expand Down
4 changes: 2 additions & 2 deletions hu-hu/ruby-hu.html.markdown
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
language: ruby
lang: hu-hu
filenev: learnruby.rb
filename: learnruby-hu.rb
contributors:
- ["David Underwood", "http://theflyingdeveloper.com"]
- ["Joel Walden", "http://joelwalden.net"]
Expand All @@ -13,7 +13,7 @@ contributors:
- ["Dzianis Dashkevich", "https://github.com/dskecse"]
- ["Levi Bostian", "https://github.com/levibostian"]
- ["Rahil Momin", "https://github.com/iamrahil"]
translators:
translators:
- ["Zsolt Prontvai", "https://github.com/prozsolt"]
---

Expand Down
2 changes: 1 addition & 1 deletion less.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ contributors:
Less is a CSS pre-processor, that adds features such as variables, nesting, mixins and more.
Less (and other preprocessors, such as [Sass](http://sass-lang.com/) help developers to write maintainable and DRY (Don't Repeat Yourself) code.

```less
```css


//Single line comments are removed when Less is compiled to CSS.
Expand Down
2 changes: 1 addition & 1 deletion nim.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ that gives the programmer power without compromises on runtime efficiency.

Nim is efficient, expressive, and elegant.

```nimrod
```javascript
var # Declare (and assign) variables,
letter: char = 'n' # with or without type annotations
lang = "N" & "im"
Expand Down
235 changes: 0 additions & 235 deletions nl-nl/amd-nl.html.markdown

This file was deleted.

3 changes: 2 additions & 1 deletion ru-ru/d-ru.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ contributors:
- ["Andre Polykanine", "http://oire.me/"]
lang: ru-ru
---

D - современный компилируемый язык общего назначения с Си-подобным синтаксисом,
который сочетает удобство, продуманный дизайн и высокую производительность.
D - это С++, сделанный правильно.

```d
```c
// Welcome to D! Это однострочный комментарий

/* многострочный
Expand Down
Loading

0 comments on commit f3b10be

Please sign in to comment.