Skip to content

Commit

Permalink
fixed textlint problem #1645
Browse files Browse the repository at this point in the history
  • Loading branch information
kujirahand committed Apr 25, 2024
1 parent 9e913cf commit 57ff0b9
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion batch/build_browsers.nako3
Expand Up @@ -36,7 +36,7 @@
#-------------------------------------------------
# doc/browsers.mjsを作成
MD="# なでしこ3 対応ブラウザ一覧"&改行&改行
MD=MD&"日本語プログラミング言語「なでしこ3」は以下のブラウザに対応しています。"&改行&改行
MD=MD&"日本語プログラミング言語「なでしこ3」は次のブラウザに対応しています。"&改行&改行
ブラウザ名変換表@"node"="Node.js"
TYPES={
"デスクトップ":["ie","edge","firefox","chrome","safari","opera","node"],
Expand Down
2 changes: 1 addition & 1 deletion demo/browsers.html
Expand Up @@ -3,7 +3,7 @@
</head><body>
<h1>なでしこ3 対応ブラウザ一覧</h1>

<p>日本語プログラミング言語「なでしこ3」は以下のブラウザに対応しています</p>
<p>日本語プログラミング言語「なでしこ3」は次のブラウザに対応しています</p>

<h2>デスクトップ</h2>

Expand Down
2 changes: 1 addition & 1 deletion doc/browsers.md
@@ -1,6 +1,6 @@
# なでしこ3 対応ブラウザ一覧

日本語プログラミング言語「なでしこ3」は以下のブラウザに対応しています
日本語プログラミング言語「なでしこ3」は次のブラウザに対応しています

## デスクトップ

Expand Down
6 changes: 3 additions & 3 deletions doc/plugins.md
Expand Up @@ -5,7 +5,7 @@
- (1) なでしこ3自身で開発した[NAKO3プラグイン](https://nadesi.com/v3/doc/index.php?%E6%96%87%E6%B3%95%2FNAKO3%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3%E3%81%AE%E4%BD%9C%E3%82%8A%E6%96%B9&show)
- (2) JavaScriptで開発した[JSプラグイン](https://nadesi.com/v3/doc/index.php?%E6%96%87%E6%B3%95%2FJS%E3%83%97%E3%83%A9%E3%82%B0%E3%82%A4%E3%83%B3%E3%81%AE%E4%BD%9C%E3%82%8A%E6%96%B9&show)

なお、(1)のプラグインはなでしこ自身で関数を定義するだけである
なお、(1)のプラグインは、なでしこ自身で関数を定義するもの
以下では、(2)のJavaScriptで開発したプラグインについて解説する。

## JSプラグインを利用する手順
Expand Down Expand Up @@ -53,7 +53,7 @@ default export {

## プラグイン側の実装方法

プラグインの実体は、Objectである
プラグインの実体は、Object

```js
{
Expand Down Expand Up @@ -183,7 +183,7 @@ if (typeof (navigator) === 'object') {
}
```

また、関数の引数に与える、sysはなでしこ自身を表す
また、関数の引数に与える、sysはなでしこのシステム情報を保持する
もし、代入的関数呼び出し(setter)であれば、sys.isSetterにtrueの値が入る。

なお、プラグインでは、次のメソッドが使えるようになる。(すべてsrc/plugin_system.jsで定義されている。システム関数の初期化時に、これらの関数が追加される)
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "nadesiko3",
"version": "3.5.2",
"version": "3.5.3",
"description": "Japanese Programming Language",
"type": "module",
"main": "src/index.mjs",
Expand Down
4 changes: 2 additions & 2 deletions src/nako_version.mts
Expand Up @@ -11,9 +11,9 @@ export interface NakoVersion {
}
// 実際のバージョン定義 (自動生成されるので以下を編集しない)
const nakoVersion: NakoVersion = {
version: '3.5.2',
version: '3.5.3',
major: 3,
minor: 5,
patch: 2
patch: 3
}
export default nakoVersion

0 comments on commit 57ff0b9

Please sign in to comment.