1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-01 04:20:39 +02:00

fix indentation and typos

This commit is contained in:
aceawan
2015-10-19 15:33:48 +02:00
parent f8a2b28890
commit 13c9d9af5c

View File

@@ -90,7 +90,7 @@ class BinTree(T) {
T data = null;
// Si il n'y a qu'un seul paramètre de template,
// on peut s'abstenir de parenthèses.
// on peut s'abstenir de mettre des parenthèses.
BinTree!T left;
BinTree!T right;
}