I want to make this change as easy to review as possible. So I am for a minimal rendered diff, assuming --ignore-all-space.
So for example, the diff for this RPC is:
 0$ git diff --ignore-all-space  --word-diff ./gettxout
 1diff --git a/gettxout b/gettxout
 2index 1d186cd..90fa947 100644
 3--- a/gettxout
 4+++ b/gettxout
 5@@ -8,21 +8,21 @@ Arguments:
 63. include_mempool    (boolean, optional, default=true) Whether to include the mempool. Note that an unspent output that is spent in the mempool won't appear.
 7
 8Result:
 9{                         {+(json object)+}
10  "bestblock" : [-"hash",-]{+"hex",+}    (string) The hash of the block at the tip of the chain
11  "confirmations" : n,    (numeric) The number of confirmations
12  "value" : [-x.xxx,-]{+n,+}            (numeric) The transaction value in BTC
13  "scriptPubKey" : {      (json object)
14    "asm" : [-"code",-]{+"hex",+}        (string)
15    "hex" : "hex",        (string)
16    "reqSigs" : [-n,          (numeric)-]{+"hex",    (string)+} Number of required signatures
17    "type" : [-"pubkeyhash",-]{+"hex",+}       (string) The type, eg pubkeyhash
18    "addresses" : [       [-(array of string)-]{+(json array)+} array of bitcoin addresses
19      [-"address"-]{+"str",+}              (string) bitcoin address
20      [-,...-]
21[-     ]-]{+...+}
22{+    ],+}
23  },
24  "coinbase" : [-true|false   (boolean)-]{+"hex",     (string)+} Coinbase or not
25}
26
27Examples: