Skip to content

Commit 1a1e288

Browse files
author
wuaoxiang
committed
fix typo
1 parent d29a6ad commit 1a1e288

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

2019/10/learn_ruby.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ ruby的class method的前缀是self.
8383

8484
### ruby.variable
8585

86-
种类:local/global/instance/class variabl
86+
种类:local/global/instance/class variable
8787
举例:$global=100,@@class=nil,@instance=nil
8888
在irb直接操作类变量会有warning: class variable access from toplevel
8989

2019/11/project-admin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ SELECT * FROM information_schema.columns WHERE column_name = 'column_name';
134134
validates :interval_of_hook, length: { in: 1..60 }
135135
validates :interval_of_sleep, length: { in: 1..60 }
136136
validates :status, inclusion: { in: %w(ok error),
137-
message: "staus must be ok or error" }
137+
message: "status must be ok or error" }
138138
```
139139

140140
### superclass mismatch for class RobotsController

2019/before_2019/css_html_notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,8 +146,8 @@ legend标签在fieldset标签内才能生效
146146
</form>
147147
```
148148

149-
## CROS 跨域
149+
## 跨域
150150

151-
后端: nginx 或 web 框架加上 cros
151+
后端: nginx 或 web 框架加上 CROS
152152

153153
前端 ouath 需要弹窗无法做成内嵌,或者通过浏览器插件去请求绕开浏览器安全限制

2021/07/debug_and_dynamic_analyzing_tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ pstack 实际上在 debian 上是个 bash 脚本,但在 arch/manjaro 上只有
416416

417417
所以我把 ubuntu/centos 的 /usr/bin/pstack 脚本抄过来就能在自己 arch 系统上运行了
418418

419-
pstack 输出的内容跟 (gdb) attch $PID 的 bt 差不多
419+
pstack 输出的内容跟 (gdb) attach $PID 的 bt 差不多
420420

421421
```
422422
[ww w]$ sudo strace -p 1278031

category/vim/keymap.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ set ignorecase
6767
set smartcase
6868
set cursorline
6969
"set cursorcolumn
70-
"cursorline only actived window
70+
"cursorline only activated window
7171
augroup CursorLine
7272
au!
7373
au VimEnter,WinEnter,BufWinEnter * setlocal cursorline

typos.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ extend-exclude = [
55

66
[default.extend-words]
77
ser = "ser" # serde
8+
cros = "cros"
89
iterm = "iterm"

0 commit comments

Comments
 (0)