From 017a58b078bc3c09c27eb17eb18d8824c2f9d39a Mon Sep 17 00:00:00 2001 From: Gabriel Le Breton Date: Sun, 6 Dec 2020 19:56:35 -0500 Subject: Fix a small french typo --- fr-fr/c++-fr.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fr-fr/c++-fr.html.markdown b/fr-fr/c++-fr.html.markdown index 863162f7..ef802399 100644 --- a/fr-fr/c++-fr.html.markdown +++ b/fr-fr/c++-fr.html.markdown @@ -69,7 +69,7 @@ void func(); // fonction qui ne prend aucun argument // En C void func(); // fonction qui peut prendre n'importe quel nombre d'arguments -// Utilise nullptr au lieu de NULL in C++ +// Utilise nullptr au lieu de NULL en C++ int* ip = nullptr; // Les en-têtes standards du C sont disponibles en C++, -- cgit v1.2.3 From ead8ac5306d01b9ba4693f593f585976e47ba787 Mon Sep 17 00:00:00 2001 From: Gabriel Le Breton Date: Sun, 6 Dec 2020 19:59:04 -0500 Subject: Fix another small french typo --- fr-fr/c++-fr.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fr-fr/c++-fr.html.markdown b/fr-fr/c++-fr.html.markdown index ef802399..0b5bf6b0 100644 --- a/fr-fr/c++-fr.html.markdown +++ b/fr-fr/c++-fr.html.markdown @@ -73,7 +73,7 @@ void func(); // fonction qui peut prendre n'importe quel nombre d'arguments int* ip = nullptr; // Les en-têtes standards du C sont disponibles en C++, -// mais son préfixés avec "c" et n'ont pas de suffixe .h +// mais sont préfixés avec "c" et n'ont pas de suffixe .h #include int main() -- cgit v1.2.3 From cd8b941f929a5a74b6336dc52fb4605ba2757a56 Mon Sep 17 00:00:00 2001 From: Gabriel Le Breton Date: Sun, 6 Dec 2020 20:11:40 -0500 Subject: Fix yet another french typo :) --- fr-fr/c++-fr.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fr-fr/c++-fr.html.markdown b/fr-fr/c++-fr.html.markdown index 0b5bf6b0..c8603756 100644 --- a/fr-fr/c++-fr.html.markdown +++ b/fr-fr/c++-fr.html.markdown @@ -722,7 +722,7 @@ catch (...) // gestion d'un fichier C : void faireQuelqueChoseAvecUnFichier(const char* nomDuFichier) { - // Pour commencer, supposns que rien ne peut échouer. + // Pour commencer, supposons que rien ne peut échouer. FILE* fh = fopen(nomDuFichier, "r"); // Ouvre le fichier en lecture -- cgit v1.2.3