@grain/stdlib 0.6.4 → 0.6.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/runtime/string.gr CHANGED
@@ -855,6 +855,7 @@ provide let toString = value => {
855
855
  * @param suffix: The string to print after the argument
856
856
  *
857
857
  * @since v0.1.0
858
+ * @history v0.6.0: Added support for custom suffixes
858
859
  */
859
860
  @unsafe
860
861
  provide let print = (value, suffix="\n") => {
package/runtime/string.md CHANGED
@@ -66,9 +66,16 @@ Returns:
66
66
 
67
67
  ### String.**print**
68
68
 
69
- <details disabled>
70
- <summary tabindex="-1">Added in <code>0.1.0</code></summary>
71
- No other changes yet.
69
+ <details>
70
+ <summary>Added in <code>0.1.0</code></summary>
71
+ <table>
72
+ <thead>
73
+ <tr><th>version</th><th>changes</th></tr>
74
+ </thead>
75
+ <tbody>
76
+ <tr><td><code>0.6.0</code></td><td>Added support for custom suffixes</td></tr>
77
+ </tbody>
78
+ </table>
72
79
  </details>
73
80
 
74
81
  ```grain