File tree Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Expand file tree Collapse file tree 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 31
31
# hooks:
32
32
# - id: remove-tabs
33
33
- repo : https://github.com/codespell-project/codespell
34
- rev : v2.1.0
34
+ rev : v2.2.1
35
35
hooks :
36
36
- id : codespell
37
37
name : Run codespell
@@ -44,13 +44,13 @@ repos:
44
44
# - id: shellcheck
45
45
# - id: shfmt
46
46
- repo : https://github.com/pre-commit/mirrors-prettier
47
- rev : v2.7.1
47
+ rev : v3.0.0-alpha.0
48
48
hooks :
49
49
- id : prettier
50
50
name : Run prettier
51
51
description : Format files with prettier
52
52
- repo : https://github.com/igorshubovych/markdownlint-cli
53
- rev : v0.32.1
53
+ rev : v0.32.2
54
54
hooks :
55
55
- id : markdownlint
56
56
name : Run markdownlint
60
60
types : [markdown]
61
61
files : \.(md|mdown|markdown)$
62
62
- repo : https://github.com/adrienverge/yamllint
63
- rev : v1.27.1
63
+ rev : v1.28.0
64
64
hooks :
65
65
- id : yamllint
66
66
name : Run yamllint
Original file line number Diff line number Diff line change @@ -222,15 +222,15 @@ typedef struct _ast_function_declaration
222
222
// [main] FN ( mut name type ) fn_name () type { }
223
223
// ^ pos_attribute
224
224
// ^ pos_function
225
- // ^ pos_reciver
225
+ // ^ pos_receiver
226
226
// ^ pos_name
227
227
// ^ pos_param
228
228
// ^ pos_return
229
229
// ^ pos_body
230
230
Location pos ;
231
231
Location pos_attribute ;
232
232
Location pos_function ;
233
- Location pos_reciver ;
233
+ Location pos_receiver ;
234
234
Location pos_name ;
235
235
Location pos_param ;
236
236
Location pos_return ;
@@ -244,7 +244,7 @@ typedef struct _ast_function_declaration
244
244
bool has_return ;
245
245
246
246
char * name ;
247
- AstParam * reciver ;
247
+ AstParam * receiver ;
248
248
AstParamArray * params ; // AstParam
249
249
AstBlockDeclaration * statements ;
250
250
AstAttributeDeclarationArray * attributes ; // AstAttributeDeclaration
Original file line number Diff line number Diff line change 1
- <!DOCTYPE html>
1
+ <!doctype html>
2
2
< html lang ="en ">
3
3
< head >
4
4
< meta charset ="utf-8 " />
You can’t perform that action at this time.
0 commit comments