From f578ff88d2514bf94c46cfb8c0e33236c2b2fcf1 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Tue, 6 Apr 2010 01:26:31 +0000 Subject: As a brief diversion from real work, implemente... MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As a brief diversion from real work, implemented Damerau–Levenshtein and ran it on trunk to elicit obvious misspellings. Unfortunately they're mostly in places like compiler comments which real people never see, but I fixed them anyway. All those English Lit majors who peruse our sources are sure to be pleased. No review. --- docs/examples/pilib/elasticBuffer.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples/pilib/elasticBuffer.scala') diff --git a/docs/examples/pilib/elasticBuffer.scala b/docs/examples/pilib/elasticBuffer.scala index e156cafbc2..a0e8bb6a7c 100644 --- a/docs/examples/pilib/elasticBuffer.scala +++ b/docs/examples/pilib/elasticBuffer.scala @@ -64,7 +64,7 @@ object elasticBuffer { def Consumer(get: Chan[String]): Unit = { Thread.sleep(1 + random.nextInt(1000)) val msg = get.read - System.out.println("Consummer took " + msg) + System.out.println("Consumer took " + msg) Consumer(get) } -- cgit v1.2.3