Skip to content

Commit 25a0829

Browse files
committed
Fixed package name typo
1 parent 90f3ae2 commit 25a0829

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

changelog.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
Scala Markdown
22
===============================
33

4-
[Scala Markdown 1.0](http://scalamd.fusesource.org/maven/1.0), September 9, 2010
4+
[Scala Markdown 1.1](http://scalamd.fusesource.org/maven/1.1), September 14, 2010
5+
----
6+
7+
* Fixed package name typo
8+
9+
[Scala Markdown 1.0](http://scalamd.fusesource.org/maven/1.0), September 13, 2010
510
----
611

712
* Initial Release

readme.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Circumflex folks over at `git://github.com/inca/circumflex.git`
1313

1414
## Build from sources
1515

16-
Clone Circumflex repository:
16+
Clone the Scala Markdown Library repository:
1717

1818
git clone git://github.com/chirino/scalamd.git
1919

src/main/scala/md.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Copyright (C) 2009-2010 the original author or authors.
33
*/
4-
package org.fusesoruce.scalamd
4+
package org.fusesource.scalamd
55

66
// import ru.circumflex.core._
77
import java.util.regex._

src/main/scala/util.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Copyright (C) 2009-2010 the original author or authors.
33
*/
4-
package org.fusesoruce.scalamd
4+
package org.fusesource.scalamd
55

66
import java.lang.StringBuilder
77
import java.util.regex.{Pattern, Matcher}

src/test/scala/test.scala

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/**
22
* Copyright (C) 2009-2010 the original author or authors.
33
*/
4-
package org.fusesoruce.scalamd.test
4+
package org.fusesource.scalamd.test
55

66
import org.specs.runner.JUnit4
77
import org.specs.Specification
88
import java.io.File
9-
import org.fusesoruce.scalamd.Markdown
9+
import org.fusesource.scalamd.Markdown
1010
import org.apache.commons.io.FileUtils
1111
import org.apache.commons.lang.StringUtils
1212
import org.specs.matcher.Matcher

0 commit comments

Comments
 (0)