Overview
Comment: | [njs] fix typos and mistakes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | njs | nodejs |
Files: | files | file ages | folders |
SHA3-256: |
58155764559e77348f7e6cc963e28e21 |
User & Date: | olr on 2018-10-17 13:44:21 |
Other Links: | branch diff | manifest | tags |
Context
2018-10-17
| ||
13:56 | [njs] Add note in client doc check-in: 694fbfbe9e user: IllusionPerdu tags: njs, nodejs | |
13:44 | [njs] fix typos and mistakes check-in: 5815576455 user: olr tags: njs, nodejs | |
13:43 | [njs] Fix some case in cli check-in: e0cae3263f user: IllusionPerdu tags: njs, nodejs | |
Changes
Modified gc_lang/fr/nodejs/cli/bin/gramma-cli.js from [2fa257f1cc] to [cbc4196f53].
︙ | |||
14 15 16 17 18 19 20 | 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | - + | https://stackoverflow.com/questions/41058569/what-is-the-difference-between-const-and-const-in-javascript */ const argCmd = require("../lib/minimist.js")(process.argv.slice(2)); const { performance } = require("perf_hooks"); //Initialisation des messages |
︙ | |||
38 39 40 41 42 43 44 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 | - + | arg: "", description: "Affiche les informations que vous lisez ;)", execute: "" }, perf: { short: "", arg: "on/off", |
︙ | |||
68 69 70 71 72 73 74 | 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | - + - + - + - + - + - + | arg: "texte", description: "Permet de mettre en forme le texte.", execute: "formatText" }, check: { short: "", arg: "texte", |
︙ | |||
465 466 467 468 469 470 471 | 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 | - + | repAction["help"].push(action.padEnd(10, " ") + ": " + cmdAction[action].arg.padEnd(8, " ") + ": " + cmdAction[action].description); } repAction["help"].push(""); repAction["help"].push("================================== Note: =================================="); repAction["help"].push(""); repAction["help"].push("En mode client: les arguments sont de la forme «--argument» !"); repAction["help"].push("En mode client intéractif: pour les commandes concernant un texte, vous"); |
︙ |
Modified gc_lang/fr/nodejs/cli/readme.md from [a056264171] to [61b1f94066].
1 2 3 4 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | - + - - - + + + - + - - + + - - - + + + | # Client/Serveur de Grammalecte pour NodeJS ## Informations |
︙ | |||
55 56 57 58 59 60 61 | 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 | - + | GrammaJS> exit ``` Exemple pour les vérifications portant sur un texte: ``` CMD> gramma-cli -i |
︙ | |||
83 84 85 86 87 88 89 | 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | - + - + - + - + | Exemple faisant plusieurs actions: ``` CMD> gramma-cli --lemma --morph --suggest --text salut Morph possible de: salut └ >salut/:N:m:s/* |
Modified gc_lang/fr/nodejs/core/readme.md from [c4fcf0addd] to [48fe8f24b1].
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | - + - - + + | # Grammalecte pour NodeJS ## Informations Grammalecte est un correcteur grammatical open source dédié à la langue française. Site Internet : https://www.dicollecte.org/ ## Installation |
Modified gc_lang/fr/nodejs/note.md from [ea06c98861] to [9cf07414eb].
1 2 | 1 2 3 4 5 6 7 8 9 10 | - + | # Note pour le dévellepement pour NodeJS |
︙ |