Explorar el Código

Update README.md

Git-Leon hace 6 años
padre
commit
c1b78828af
Ninguna cuenta está vinculada al correo electrónico del colaborador
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      README.md

+ 1
- 1
README.md Ver fichero

169
 ### Part 10.3 - Create `ClassroomConfig`
169
 ### Part 10.3 - Create `ClassroomConfig`
170
 * The class should define a bean named `currentCohort()` which returns a `Classroom` object whose dependencies are `instructors` and `students`
170
 * The class should define a bean named `currentCohort()` which returns a `Classroom` object whose dependencies are `instructors` and `students`
171
 * The class should define a bean named `previousCohort()` which returns an `Classroom` object whose dependencies are `instructors` and `previousStudents`
171
 * The class should define a bean named `previousCohort()` which returns an `Classroom` object whose dependencies are `instructors` and `previousStudents`
172
-* **Note:** [it is sometimes useful](https://www.boraji.com/spring-dependson-annotation-example) (although not always necessary) to use the `@DependsOn` annotation to help the compiler and other readers of the code to understand what order beans should be executed.
172
+* **Note:** [it is sometimes useful](https://www.boraji.com/spring-dependson-annotation-example) (although not always necessary) to use the `@DependsOn` annotation to help the Spring framework and other readers of the code to understand what order beans should be executed.
173
 	* `@DependsOn({"instructors", "students"})`
173
 	* `@DependsOn({"instructors", "students"})`
174
 
174
 
175
 	
175