From 787c31907c950d7389ff36001e2ec2ab0c427578 Mon Sep 17 00:00:00 2001
From: yellowgg
Date: Tue, 23 Jul 2019 15:42:48 +0800
Subject: [PATCH 1/2] =?UTF-8?q?fix:=E4=B9=A6=E5=86=99=E9=94=99=E8=AF=AF->S?=
=?UTF-8?q?pring=E7=AF=87?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../framework/spring/SpringInterviewQuestions.md | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/system-design/framework/spring/SpringInterviewQuestions.md b/docs/system-design/framework/spring/SpringInterviewQuestions.md
index 9295681bfaa..9d7b2d50096 100644
--- a/docs/system-design/framework/spring/SpringInterviewQuestions.md
+++ b/docs/system-design/framework/spring/SpringInterviewQuestions.md
@@ -43,7 +43,7 @@ Spring 官网列出的 Spring 的 6 个特征:

- **Spring Core:** 基础,可以说 Spring 其他所有的功能都需要依赖于该类库。主要提供 IoC 依赖注入功能。
-- **Spring Aspects ** : 该模块为与AspectJ的集成提供支持。
+- **Spring Aspects** : 该模块为与AspectJ的集成提供支持。
- **Spring AOP** :提供了面向方面的编程实现。
- **Spring JDBC** : Java数据库连接。
- **Spring JMS** :Java消息服务。
@@ -227,7 +227,7 @@ public OneService getService(status) {
我们一般使用 `@Autowired` 注解自动装配 bean,要想把类标识成可用于 `@Autowired` 注解自动装配的 bean 的类,采用以下注解可实现:
-- `@Component` :通用的注解,可标注任意类为 `Spring` 组件。如果一个Bean不知道属于拿个层,可以使用`@Component` 注解标注。
+- `@Component` :通用的注解,可标注任意类为 `Spring` 组件。如果一个Bean不知道属于哪个层,可以使用`@Component` 注解标注。
- `@Repository` : 对应持久层即 Dao 层,主要用于数据库相关操作。
- `@Service` : 对应服务层,主要涉及一些复杂的逻辑,需要用到 Dao层。
- `@Controller` : 对应 Spring MVC 控制层,主要用户接受用户请求并调用 Service 层返回数据给前端页面。
From e4db22afe97c70d783d5935e0d6edc11a991d90a Mon Sep 17 00:00:00 2001
From: yellowgg
Date: Tue, 23 Jul 2019 15:43:02 +0800
Subject: [PATCH 2/2] =?UTF-8?q?fix:=E4=B9=A6=E5=86=99=E9=94=99=E8=AF=AF->G?=
=?UTF-8?q?it=E7=AF=87?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
docs/tools/Git.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/tools/Git.md b/docs/tools/Git.md
index e58f13b63aa..37e1f4465c7 100644
--- a/docs/tools/Git.md
+++ b/docs/tools/Git.md
@@ -112,7 +112,7 @@ Git 有三种状态,你的文件可能处于其中之一:
2. **已修改(modified)**:已修改表示修改了文件,但还没保存到数据库中。
3. **已暂存(staged)**:表示对一个已修改文件的当前版本做了标记,使之包含在下次提交的快照中。
-由此引入 Git 项目的三个工作区域的概念:**Git 仓库(.git directoty) **、**工作目录(Working Directory)** 以及 **暂存区域(Staging Area)** 。
+由此引入 Git 项目的三个工作区域的概念:**Git 仓库(.git directoty)**、**工作目录(Working Directory)** 以及 **暂存区域(Staging Area)** 。