Compare commits

...

5 Commits

Author SHA1 Message Date
caramujosan
3f6966d631 Merge 58f626bb22 into 2aee46f169 2024-05-04 12:59:27 -07:00
Julien Le Coupanec
2aee46f169 Merge pull request #381 from FabricioLopees/fix/java
Update readme: fix grammatical error in java.md
2024-04-15 10:53:51 +02:00
FabricioLopees
22977d5ca1 update readme: fix grammatical error in java.md 2024-04-13 13:05:38 -03:00
FabricioLopees
a2c99c9674 update readme: fix grammatical error in java.md 2024-04-13 12:52:16 -03:00
Caramujo-San
58f626bb22 Update react.js 2023-02-15 17:12:04 -03:00
2 changed files with 3 additions and 2 deletions

3
frontend/react.js vendored
View File

@@ -136,7 +136,8 @@ class Component extends React.Component {
// Invoked immediately after updating occurs. This method is not called for the initial render. // Invoked immediately after updating occurs. This method is not called for the initial render.
// Use this as an opportunity to operate on the DOM when the component has been updated. // Use this as an opportunity to operate on the DOM when the component has been updated.
// This is also a good place to do network requests as long as you compare the current props to previous props (e.g. a network request may not be necessary if the props have not changed). // This is also a good place to do network requests as long as you compare the current props to
// previous props (e.g. a network request may not be necessary if the props have not changed).
componentDidUpdate(prevProps, prevState) { } componentDidUpdate(prevProps, prevState) { }
// Invoked immediately before a component is unmounted and destroyed. // Invoked immediately before a component is unmounted and destroyed.

View File

@@ -286,7 +286,7 @@ for(dataType item : array) {
### ACCESS MODIFIERS ### ACCESS MODIFIERS
1. defualt(No keyword required) 1. default(No keyword required)
2. private 2. private
3. public 3. public
4. protected 4. protected