From 4bca612100726c32f85470773d92820730cdf5c9 Mon Sep 17 00:00:00 2001 From: Nicolas Buduroi Date: Thu, 1 Sep 2022 14:52:39 -0400 Subject: [PATCH] Fix copy-paste mistake That text was probably copied from `prepend` above and not properly edited. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cd1add..b7a2b7e 100644 --- a/README.md +++ b/README.md @@ -1131,7 +1131,7 @@ end #### append - Append some text to a field. This only works for string fields. Accepts a hash of fields to prepend. The keys are the field names and the values are the prefix strings. An example would be to add " (copied version)" to your description field. Don't forget to add a leading space if you want it. Passing a hash will add each key value pair to the list of append directives. If you wish to empty the list of directives, you may pass the hash inside of an array like this `[{:contents => " (copied version)"}]`. + Append some text to a field. This only works for string fields. Accepts a hash of fields to append. The keys are the field names and the values are the prefix strings. An example would be to add " (copied version)" to your description field. Don't forget to add a leading space if you want it. Passing a hash will add each key value pair to the list of append directives. If you wish to empty the list of directives, you may pass the hash inside of an array like this `[{:contents => " (copied version)"}]`. #### set