Skip to content

Fix some typos #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions manual.tex
Original file line number Diff line number Diff line change
@@ -2568,8 +2568,8 @@ \section{
この用意の下で,以下のコマンドを実行すれば,実行形式プログラムが
作成されます.
\begin{program}
\$ smlsharp hello.sml -o hello\\
\$ ./hello\\
\$ smlsharp hello2.sml -o hello2\\
\$ ./hello2\\
hello world!
\end{program}
\else%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
@@ -2648,8 +2648,8 @@ \section{

With this preparation, {\tt hello2.sml} is compiled as follows.
\begin{program}
\$ smlsharp hello.sml -o hello\\
\$ ./hello\\
\$ smlsharp hello2.sml -o hello2\\
\$ ./hello2\\
hello world!
\end{program}
\fi%%%%<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
@@ -3857,7 +3857,7 @@ \section{\txt{高階の関数}{Higher-order functions}}
以上の例から理解される通り,MLは以下の機能を持っています.
\begin{quote}
関数は,整数型などのデータと同様,プ
ログラムが返すことができる値でああり,自由に受け渡し,使うことができる.
ログラムが返すことができる値であり,自由に受け渡し,使うことができる.
特に関数は,別の関数を引数として受け取ることができる.
\end{quote}
これが,「プログラムを式で定義していく」という大原則の下での,MLプ
@@ -3894,7 +3894,7 @@ \section{\txt{高階の関数}{Higher-order functions}}
from a function or passed to a function.
In particular, a function can take a function as a parameter.
% 関数は,整数型などのデータと同様,プ
% ログラムが返すことができる値でああり,自由に受け渡し,使うことができる.
% ログラムが返すことができる値であり,自由に受け渡し,使うことができる.
% 特に関数は,別の関数を引数として受け取ることができる.
\end{quote}
This is the important principle of ML under the fundamental