Skip to content

Commit f4f35d8

Browse files
committed
Merge pull request #386 from fagiani/master
fix(debug,docs): fix a couple of typos
2 parents e496bcf + deb3344 commit f4f35d8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/src/contributing/submitting-a-pull-request.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ To make it more formal, it looks something like this:
6464
The allowed `{types}` are as follows:
6565

6666
* `feat` -> feature
67-
* `fix`` -> bug fix
67+
* `fix` -> bug fix
6868
* `docs` -> documentation
6969
* `style` -> formatting
7070
* `ref` -> refactoring code

rootfs/scheduler/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ def logs(self, name):
370370

371371
def run(self, name, image, entrypoint, command):
372372
"""Run a one-off command."""
373-
logger.debug('run {}, img {}, entypoint {}, cmd "{}"'.format(
373+
logger.debug('run {}, img {}, entrypoint {}, cmd "{}"'.format(
374374
name, image, entrypoint, command))
375375
appname = name.split('_')[0]
376376
name = name.replace('.', '-').replace('_', '-')

0 commit comments

Comments
 (0)