Skip to content

Commit c5c1e2e

Browse files
authored
Merge pull request Snailclimb#9 from CNAHYZ/master
修改a-2、b-2文字拼写及格式错误
2 parents a22f412 + e2617f5 commit c5c1e2e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/a-2程序员简历如何写.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
### 1.2.7 其他的一些小tips
9696

9797
1. 尽量避免主观表述,少一点语义模糊的形容词,尽量要简洁明了,逻辑结构清晰。
98-
2. 如果自己有博客或者个人技术栈点的话,写上去会为你加分很多。
98+
2. 如果自己有博客或者个人技术站点的话,写上去会为你加分很多。
9999
3. 如果自己的Github比较活跃的话,写上去也会为你加分很多。
100100
4. 注意简历真实性,一定不要写自己不会的东西,或者带有欺骗性的内容
101101
5. 项目经历建议以时间倒序排序,另外项目经历不在于多,而在于有亮点。
@@ -107,5 +107,5 @@
107107
- Markdown简历排版工具:https://resume.mdnice.com/
108108
- 超级简历 : https://www.wondercv.com/
109109
- best-resume-ever 基于Vue和LESS快速生成简历模板 : https://github.com/salomonelli/best-resume-ever
110-
4.极简简历 : https://www.polebrief.com/index
110+
- 极简简历 : https://www.polebrief.com/index
111111
- typora+markdown+css 自定义简历模板 :https://github.com/Snailclimb/typora-markdown-resume

docs/b-2Java集合.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public interface RandomAccess {
124124

125125
### 2.2.7. HashSet如何检查重复
126126

127-
以下内容摘自我的 Java 启蒙书《Head fist java》第二版:
127+
以下内容摘自我的 Java 启蒙书《Head first java》第二版:
128128

129129
当你把对象加入`HashSet`时,`HashSet` 会先计算对象的`hashcode`值来判断对象加入的位置,同时也会与其他加入的对象的 `hashcode` 值作比较,如果没有相符的 `hashcode``HashSet` 会假设对象没有重复出现。但是如果发现有相同 `hashcode` 值的对象,这时会调用`equals()`方法来检查 `hashcode` 相等的对象是否真的相同。如果两者相同,`HashSet` 就不会让加入操作成功。
130130

0 commit comments

Comments
 (0)