Skip to content

Commit f62a0fa

Browse files
committed
Some updates.
1 parent 199145b commit f62a0fa

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

main.tex

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -373,10 +373,9 @@ \section{Basic Language Features}
373373
Futhark are the signed integer types \texttt{i8}, \texttt{i16},
374374
\texttt{i32}, \texttt{i64}, the unsigned integer types \texttt{u8},
375375
\texttt{u16}, \texttt{u32}, \texttt{u64}, the floating-point types
376-
\texttt{f32}, \texttt{f64}, as well as \texttt{bool}. Furthermore,
377-
\texttt{int} is an alias for \texttt{i32}. An \texttt{f32} is always
378-
a single-precision float and a \texttt{f64} is a double-precision
379-
float.
376+
\texttt{f32}, \texttt{f64}, as well as \texttt{bool}. An \texttt{f32}
377+
is always a single-precision float and a \texttt{f64} is a
378+
double-precision float.
380379

381380
Numeric literals can be suffixed with their intended type. For
382381
example \texttt{42i8} is of type \texttt{i8}, and \texttt{1337e2f64}
@@ -430,11 +429,10 @@ \subsection{Simple Expressions}
430429
\url{http://futhark.readthedocs.io} for a comprehensive treatment.
431430

432431
Function calls are written using simple juxtaposition. For example,
433-
to apply the predefined \texttt{cos64} function (cosine for
434-
\texttt{f64} values) to a constant argument, we write:
432+
to apply a function \texttt{f} to a constant argument, we write:
435433

436434
\begin{lstlisting}
437-
cos64 1.0
435+
f 1.0
438436
\end{lstlisting}
439437

440438
\noindent

0 commit comments

Comments
 (0)