-
Notifications
You must be signed in to change notification settings - Fork 163
Fix typos #11
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
Fix typos #11
Conversation
reference/bc/functions/bcscale.xml
Outdated
| <entry>7.3.0</entry> | ||
| <entry> | ||
| <function>bcscale</function> peut désormais être utilisé pour récupérer | ||
| la précision actuelle ; quand elle est utilisé pour définir une nouvelle |
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.
It's the opportunity to fix this too:
| la précision actuelle ; quand elle est utilisé pour définir une nouvelle | |
| la précision actuelle ; quand elle est utilisée pour définir une nouvelle |
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.
Good catch. Fixed!
reference/bc/functions/bcscale.xml
Outdated
| &reftitle.returnvalues; | ||
| <para> | ||
| Retourne l'ancienne précision quand utilisé en tant que définisseur. | ||
| Sinon la précision actuel est retorunée. |
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.
précision actuelle?
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.
retournée too 😄
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.
OMG. So many typos. Fixed!
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.
Typos are recurrent due to how the processed worked >_>
Changed wrongly named call to trait "T" to expected "StaticExemple". In Exemple php#11 Propriétés statiques, the declared Trait was StaticExample but the example code was calling it by the wrong name: "use T;" When running the code that resolved to an error: Fatal error: Uncaught Error: Trait "T" not found in script:8 Stack trace: #0 {main} thrown in script on line 8
Changed trait declaration from "StaticExample" to "T" to match usage.
Problem:
The example declared trait "StaticExample" but referenced trait "T" in the class definition, causing a fatal error:
Fatal error: Uncaught Error: Trait "T" not found in script:8
Stack trace:
#0 {main}
Changed trait declaration from "StaticExample" to "T" to match usage.
Problem:
The example declared trait "StaticExample" but referenced trait "T" in the class definition, causing a fatal error:
Fatal error: Uncaught Error: Trait "T" not found in script:8
Stack trace:
#0 {main}
No description provided.