Skip to content

Commit

Permalink
fix typo #306
Browse files Browse the repository at this point in the history
- charactor -> character
  • Loading branch information
zmatsuo committed Sep 28, 2024
1 parent b5d7fcc commit fb05676
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion doc/en/html/about/glossary.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ <h2>Control Sequence</h2>
</dd>
</dl>

<h2>Charactor code</h2>
<h2>Character code</h2>

Glossary related to character codes.

Expand Down
2 changes: 1 addition & 1 deletion doc/en/html/menu/setup-additional-coding.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ <h3>Transmit</h3>

<h1>Unicode setting</h1>

<h2>Charactor width (cells)</h2>
<h2>Character width (cells)</h2>

<p>
Character width for <a href="../about/glossary.html#SBCS">single-byte character code</a> such as Latin-1 is 1 cell.
Expand Down
2 changes: 1 addition & 1 deletion doc/en/html/menu/setup-additional-font.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ <h1>Additional settings / "Font" tab ([Setup] menu)</h1>

<dt id="ResizedFont">Drawing resized font to fit cell width</dt>
<dd>
Charactor width to be displayed, such as "&copy;"(U+00A9),
Character width to be displayed, such as "&copy;"(U+00A9),
can be either 1 or 2cell, and depending on the font design (font file),
the font width can also be either 1 or 2cell.<br>
Depending on the language and font, font width may not match width to display.<br>
Expand Down
4 changes: 2 additions & 2 deletions doc/en/html/usage/character_encoding.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>charactor encoding</title>
<title>character encoding</title>
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="stylesheet" href="../style.css" type="text/css">
</head>
<body>

<h1>charactor encoding</h1>
<h1>character encoding</h1>

<p>

Expand Down
12 changes: 6 additions & 6 deletions teraterm/teraterm/buffer.c
Original file line number Diff line number Diff line change
Expand Up @@ -3275,9 +3275,9 @@ static BOOL CheckSelect(int x, int y)
/**
* 1行描画
*
* @param SY スクリーン上の位置(Charactor) !バッファ上の位置
* @param SY スクリーン上の位置(Character) !バッファ上の位置
* PageStart + YStart など
* @param IStart,IEnd スクリーン上の位置(Charactor)
* @param IStart,IEnd スクリーン上の位置(Character)
* 指定した間を描画する
* @param disp_strW() wchar_t 文字を描画用関数 (Unicode用)
* @param disp_strA() char 文字を描画用関数 (ANSI用)
Expand Down Expand Up @@ -3484,9 +3484,9 @@ static void l_disp_strA(const char *buf, const char *width_info, int count, void
* 1行描画 画面用
*
* @param DrawX,Y Clint領域描画位置(pixel)
* @param SY スクリーン上の位置(Charactor) !バッファ上の位置
* @param SY スクリーン上の位置(Character) !バッファ上の位置
* PageStart + YStart など
* @param IStart,IEnd スクリーン上の位置(Charactor)
* @param IStart,IEnd スクリーン上の位置(Character)
* 指定した間を描画する
*/
static void BuffDrawLineI(int DrawX, int DrawY, int SY, int IStart, int IEnd)
Expand Down Expand Up @@ -3526,9 +3526,9 @@ static void BuffDrawLineI(int DrawX, int DrawY, int SY, int IStart, int IEnd)
/**
* 1行描画 プリンタ用
*
* @param SY スクリーン上の位置(Charactor) !バッファ上の位置
* @param SY スクリーン上の位置(Character) !バッファ上の位置
* PageStart + YStart など
* @param IStart,IEnd スクリーン上の位置(Charactor)
* @param IStart,IEnd スクリーン上の位置(Character)
* 指定した間を描画する
*/
static void BuffDrawLineIPrn(int SY, int IStart, int IEnd)
Expand Down
2 changes: 1 addition & 1 deletion teraterm/teraterm/ttermpro.rc
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ BEGIN
CONTROL "Flickerless move",IDC_CHECK_FLICKER_LESS_MOVE,"Button",BS_AUTOCHECKBOX | WS_TABSTOP,148,44,105,12
CONTROL "Window corner don't round",IDC_CHECK_CORNERDONTROUND,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,148,59,105,12
LTEXT "Charactor attributes",IDC_STATIC,137,75,63,8
LTEXT "Character attributes",IDC_STATIC,137,75,63,8
CONTROL "Enable B&old attribute color",IDC_ENABLE_ATTR_COLOR_BOLD,
"Button",BS_AUTOCHECKBOX | WS_TABSTOP,148,87,124,12
CONTROL "Enable Bold attribute font",IDC_ENABLE_ATTR_FONT_BOLD,
Expand Down

0 comments on commit fb05676

Please sign in to comment.