summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2007-07-07 12:13:09 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2007-07-07 12:13:09 +0000
commit846fec4ed016158bd1459fc9104513b2362e2324 (patch)
tree75318a39c5b85cdc10787286180587d41fbe92b4
parent17d7758bba99a7fb6d94f75a9e679f891c692c20 (diff)
downloadscala-846fec4ed016158bd1459fc9104513b2362e2324.tar.gz
scala-846fec4ed016158bd1459fc9104513b2362e2324.tar.bz2
scala-846fec4ed016158bd1459fc9104513b2362e2324.zip
oops..
-rw-r--r--src/library/scala/util/parsing/combinator/Parsers.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/util/parsing/combinator/Parsers.scala b/src/library/scala/util/parsing/combinator/Parsers.scala
index 40655c6a62..c37ef4c288 100644
--- a/src/library/scala/util/parsing/combinator/Parsers.scala
+++ b/src/library/scala/util/parsing/combinator/Parsers.scala
@@ -308,7 +308,7 @@ trait Parsers {
*<p> `p into fq' (with `fq' typically `{x => q}') first applies `p', and then, if `p' successfully
* returned result `r', applies `fq(r)' to the rest of the input. </p>
*
- *<p> From: G. Hutton. Higher-order functions for parsing. J. Funct. Program., 2(3):323Ð343, 1992. </p>
+ *<p> From: G. Hutton. Higher-order functions for parsing. J. Funct. Program., 2(3):323--343, 1992. </p>
*
* @param fq a function that, given the result from this parser, returns the second parser to be applied
* @return a parser that succeeds if this parser succeeds (with result `x') and if then `fq(x)' succeeds
@@ -763,7 +763,7 @@ trait Parsers {
/** A parser generator that, roughly, generalises the rep1sep generator so that `q', which parses the separator,
* produces a left-associative function that combines the elements it separates.
*
- * <p> From: J. Fokker. Functional parsers. In J. Jeuring and E. Meijer, editors, Advanced Functional Programming, volume 925 of Lecture Notes in Computer Science, pages 1Ð23. Springer, 1995.</p>
+ * <p> From: J. Fokker. Functional parsers. In J. Jeuring and E. Meijer, editors, Advanced Functional Programming, volume 925 of Lecture Notes in Computer Science, pages 1--23. Springer, 1995.</p>
*
* @param p a parser that parses the elements
* @param q a parser that parses the token(s) separating the elements, yielding a left-associative function that