Skip to content

Commit

Permalink
Fix typos: missing type in method signature
Browse files Browse the repository at this point in the history
  • Loading branch information
mernst committed Dec 2, 2024
1 parent 3b99338 commit fc765f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
*
* <pre>{@code
* class String {
* char charAt(@IndexFor("this") index) { ... }
* char charAt(@IndexFor("this") int index) { ... }
* }
* }</pre>
*
Expand Down
2 changes: 1 addition & 1 deletion docs/manual/index-checker.tex
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@

\begin{Verbatim}
class String {
char charAt(@IndexFor("this") index) { ... }
char charAt(@IndexFor("this") int index) { ... }
}
\end{Verbatim}

Expand Down

0 comments on commit fc765f7

Please sign in to comment.