Skip to content

Commit f8488e3

Browse files
authored
Merge pull request pre-commit#2929 from pre-commit/s#helper#lang_base#g
`s/helpers/lang_base/g` in docs
2 parents 9660d3b + d537c09 commit f8488e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ one cannot be determined, return `'default'`.
111111
You generally don't need to implement this on a first pass and can just use:
112112

113113
```python
114-
get_default_version = helpers.basic_default_version
114+
get_default_version = lang_base.basic_default_version
115115
```
116116

117117
`python` is currently the only language which implements this api
@@ -125,7 +125,7 @@ healthy.
125125
You generally don't need to implement this on a first pass and can just use:
126126

127127
```python
128-
health_check = helpers.basic_healthy_check
128+
health_check = lang_base.basic_healthy_check
129129
```
130130

131131
`python` is currently the only language which implements this api, for python
@@ -137,7 +137,7 @@ this is the trickiest one to implement and where all the smart parts happen.
137137

138138
this api should do the following things
139139

140-
- (0th / 3rd class): `install_environment = helpers.no_install`
140+
- (0th / 3rd class): `install_environment = lang_base.no_install`
141141
- (1st class): install a language runtime into the hook's directory
142142
- (2nd class): install the package at `.` into the `ENVIRONMENT_DIR`
143143
- (2nd class, optional): install packages listed in `additional_dependencies`

0 commit comments

Comments
 (0)