@@ -134,8 +134,7 @@ <h3 id="empty">
134134 (empty)
135135 </ pre >
136136 < p class ="doc ">
137- < pre > < code > Returns an empty Vector
138- </ code > </ pre >
137+ < p > Returns an empty Vector</ p >
139138
140139 </ p >
141140 </ div >
@@ -155,8 +154,7 @@ <h3 id="head">
155154 (head v)
156155 </ pre >
157156 < p class ="doc ">
158- < pre > < code > Returns the first element of a Vector.
159- </ code > </ pre >
157+ < p > Returns the first element of a Vector.</ p >
160158
161159 </ p >
162160 </ div >
@@ -215,8 +213,7 @@ <h3 id="last">
215213 (last v)
216214 </ pre >
217215 < p class ="doc ">
218- < pre > < code > Returns the last element of a Vector.
219- </ code > </ pre >
216+ < p > Returns the last element of a Vector.</ p >
220217
221218 </ p >
222219 </ div >
@@ -255,9 +252,8 @@ <h3 id="map">
255252 (map f v)
256253 </ pre >
257254 < p class ="doc ">
258- < pre > < code > Maps a function `f` over all the elements of a Vector and returns a new
259- Vector containing the results.
260- </ code > </ pre >
255+ < p > Maps a function < code > f</ code > over all the elements of a Vector and returns a new
256+ Vector containing the results.</ p >
261257
262258 </ p >
263259 </ div >
@@ -277,14 +273,11 @@ <h3 id="nth">
277273 (nth v ix)
278274 </ pre >
279275 < p class ="doc ">
280- < pre > < code > Retrieves the nth element of a Vector using a given `Index`.
281-
282- The given `Index` must have a `Size` equivalent to the `Vector`'s size in
283- its first position (the bound position).
284-
285- If the `Index`'s Int value exceeds the length of the Vector, this
286- function will return the last element of the Vector.
287- </ code > </ pre >
276+ < p > Retrieves the nth element of a Vector using a given < code > Index</ code > .</ p >
277+ < p > The given < code > Index</ code > must have a < code > Size</ code > equivalent to the < code > Vector</ code > 's size in
278+ its first position (the bound position).</ p >
279+ < p > If the < code > Index</ code > 's Int value exceeds the length of the Vector, this
280+ function will return the last element of the Vector.</ p >
288281
289282 </ p >
290283 </ div >
@@ -304,8 +297,7 @@ <h3 id="of">
304297 (of values)
305298 </ pre >
306299 < p class ="doc ">
307- < pre > < code > Creates a new Vector from the contents of an Array literal.
308- </ code > </ pre >
300+ < p > Creates a new Vector from the contents of an Array literal.</ p >
309301
310302 </ p >
311303 </ div >
@@ -364,8 +356,7 @@ <h3 id="push">
364356 (push x v)
365357 </ pre >
366358 < p class ="doc ">
367- < pre > < code > Adds an element to the end of a Vector, returning a new Vector.
368- </ code > </ pre >
359+ < p > Adds an element to the end of a Vector, returning a new Vector.</ p >
369360
370361 </ p >
371362 </ div >
@@ -424,8 +415,7 @@ <h3 id="tail">
424415 (tail v)
425416 </ pre >
426417 < p class ="doc ">
427- < pre > < code > Returns all but the first element of a Vector as a new Vector.
428- </ code > </ pre >
418+ < p > Returns all but the first element of a Vector as a new Vector.</ p >
429419
430420 </ p >
431421 </ div >
@@ -445,8 +435,7 @@ <h3 id="to-array">
445435 (to-array v)
446436 </ pre >
447437 < p class ="doc ">
448- < pre > < code > Converts a Vector to an Array.
449- </ code > </ pre >
438+ < p > Converts a Vector to an Array.</ p >
450439
451440 </ p >
452441 </ div >
@@ -466,8 +455,7 @@ <h3 id="zip">
466455 (zip f v v1)
467456 </ pre >
468457 < p class ="doc ">
469- < pre > < code > Combines two Vectors using a binary function `f`.
470- </ code > </ pre >
458+ < p > Combines two Vectors using a binary function < code > f</ code > .</ p >
471459
472460 </ p >
473461 </ div >
0 commit comments