Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Why3
why3
Commits
b9fdc864
Commit
b9fdc864
authored
Apr 02, 2014
by
Guillaume Melquiond
Browse files
Fix some typos.
parent
26d83bac
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tools/why3wc.mll
View file @
b9fdc864
...
...
@@ -213,7 +213,7 @@ and scan_annotation = parse
and string n = parse
| '"' { n }
| '\\' ('\\' |
'n' |
'"') { string n lexbuf }
| '\\' ('\\' | '"') { string n lexbuf }
| '\n' { string (n + 1) lexbuf }
| _ { string n lexbuf }
| eof { n }
...
...
@@ -231,7 +231,7 @@ and comment n = parse
| eof { n }
(** [read_header] is used to skip the possible header at
the beg
g
ining of files (unless option -a is specified).
the begi
n
ning of files (unless option -a is specified).
It stops whenever it encounters an empty line or any character outside
a comment. In this last case, it correctly resets the lexer position
on that character (decreasing [lex_curr_pos] by 1). *)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment