We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b98fcc1 commit 11f6c93Copy full SHA for 11f6c93
1 file changed
src/Microdown/Microdown.class.st
@@ -153,13 +153,12 @@ Microdown >> parse: aStreamOrString [
153
154
{ #category : 'facade' }
155
Microdown >> parseFile: aFile [
156
- "Parse and return a document from the argument marking it with the file it is contained in. This is important for path resolution."
157
-
158
- | root |
159
- root := MicrodownParser parse: aFile contents.
160
- root fromFile: aFile.
161
- ^ root
162
+ "Parse and return a document from the argument marking it with the file it is contained in. This is important for path resolution."
+
+ | root |
+ root := MicrodownParser parse: aFile contents.
+ root fromFile: aFile.
+ ^ root
163
]
164
165
0 commit comments