-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/28/metadata word sensibility #33
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Il y a une erreur.
@@ -99,6 +101,7 @@ void freeMetadata(Metadata *m) { | |||
*/ | |||
void displayMetadata(const Metadata *m) { | |||
printf("length: %zu\n", m->length); | |||
printf("threshold: %zu\n", m->length); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
m->threshold
et non m->length
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bien vu
"\t2. Search a similar word\n" | ||
"\t0. Return to Dictionaries management\n\n"); | ||
do { | ||
printf("Your choice: "); | ||
} while(!getIntRange(&choice, 0, 1)); | ||
switch (choice) { | ||
case 1: | ||
menuChangeThreshold(dico->metadata, dico->filename); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Il ne serait pas plus propre de faire menuChangeThreshold(dico)
et que ce soit dans la fonction qu'on accède au membres ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Non, une fonction ne doit prendre que ce qu'elle à besoin, et pas plus.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, je passe
@@ -8,6 +8,7 @@ | |||
|
|||
typedef struct { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Il manque la documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oui mais sur une autre PR
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Le code n'est pas régressif pour la partie 1
ab9088e
to
8313261
Compare
No description provided.