Skip to content

Commit e2c8352

Browse files
authored
Merge pull request #378 from kianmeng/fix-typos
Fix typos
2 parents 124b7bb + 4de30de commit e2c8352

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

doc/README-ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ let g:syntastic_shell_checkers = ['shellcheck']
360360
scrooloose / syntastic – 構文チェックプラグイン
361361
cheat.sh-vim – Vimのサポート
362362

363-
Syntasticは警告とエラー(code analysysツールで見つかった: jshint 、 jshint 、 pylint 、 shellcheckt etc.), and cheat.sh-vim`を表示すると、エディタに書き込まれたプログラミング言語のクエリに関するエラーと警告と回答の説明が表示されます。
363+
Syntasticは警告とエラー(code analysisツールで見つかった: jshint 、 jshint 、 pylint 、 shellcheckt etc.), and cheat.sh-vim`を表示すると、エディタに書き込まれたプログラミング言語のクエリに関するエラーと警告と回答の説明が表示されます。
364364

365365
cheat.sh Vimプラグインの最も重要な機能が表示されているデモをご覧ください(5分):
366366

lib/panela/panela_colors.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ def put_string(self, col, row, s=None, color=None, background=None):
318318

319319
def put_line(self, x1, y1, x2, y2, char=None, color=None, background=None):
320320
"""
321-
Draw line (x1, y1) - (x2, y2) fith foreground color <color>, background color <background>
321+
Draw line (x1, y1) - (x2, y2) fill foreground color <color>, background color <background>
322322
and character <char>, if specified.
323323
"""
324324

@@ -408,7 +408,7 @@ def paint(
408408
):
409409
"""
410410
Paint rectangle (x1,y1) (x2,y2) with foreground color c1 and background bg1 if specified.
411-
If spefied colors c2/bg2, rectangle is painted with linear gradient (inclined under angle).
411+
If specified colors c2/bg2, rectangle is painted with linear gradient (inclined under angle).
412412
"""
413413

414414
def calculate_color(i, j):

lib/routing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def __select_random_topic(prefix, topic_list):
162162
wrongly_formatted_random = topic[:-8]
163163
return wrongly_formatted_random
164164

165-
# Here if not a random requst, we just forward the topic
165+
# Here if not a random request, we just forward the topic
166166
return topic
167167

168168
def get_answers(

share/adapters/oeis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ oeis() (
6161
# Print Description (%N)
6262
grep '%N' $DOC | sed "s/^.*${ID} //"
6363
printf '\n'
64-
# Print Sequence (Three sections %S %T nd %U)
64+
# Print Sequence (Three sections %S %T and %U)
6565
grep '%S' $DOC | sed "s/^.*${ID} //" | tr -d '\n' > $TMP/seq
6666
grep '%T' $DOC | sed "s/^.*${ID} //" | tr -d '\n' >> $TMP/seq
6767
grep '%U' $DOC | sed "s/^.*${ID} //" | tr -d '\n' >> $TMP/seq

share/cht.sh.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ You can switch the mode with the --mode switch:
114114
cht.sh --mode lite # use https://cheat.sh/ only
115115
cht.sh --mode auto # use local installation
116116
117-
For intallation and standalone usage, you need \`git\`, \`python\`,
117+
For installation and standalone usage, you need \`git\`, \`python\`,
118118
and \`virtualenv\` to be installed locally.
119119
EOF
120120
return
@@ -731,7 +731,7 @@ cmd_update() {
731731
curl -s "${CHTSH_URL}"/:cht.sh > "$TMP2"
732732
if ! cmp "$0" "$TMP2" > /dev/null 2>&1; then
733733
if grep -q ^__CHTSH_VERSION= "$TMP2"; then
734-
# section was vaildated by us already
734+
# section was validated by us already
735735
args=(--shell "$section")
736736
cp "$TMP2" "$0" && echo "Updated. Restarting..." && rm "$TMP2" && CHEATSH_RESTART=1 exec "$0" "${args[@]}"
737737
else

0 commit comments

Comments
 (0)