What changed, and why it matters
This commit only fixes a typo and an incorrect sentence in documentation files describing the 'spliceout' command. It changes 'move funds into a channel' to 'move funds out of a channel' and adds the word 'to' in a usage sentence. No code behavior is changed, and there is no security impact.
No action required. This is a documentation-only correction with no security relevance.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff modifies two JSON schema files used for RPC documentation generation. It corrects the description of the spliceout RPC from ‘move funds into a channel’ to ‘move funds out of a channel’ and fixes a minor grammar issue in the usage text. No executable code, request handling, validation logic, or cryptographic operations are affected.
Changed components
contrib/msggen/msggen/schema.jsondoc/schemas/spliceout.jsonInspect captured patch +4 / −4
diff --git a/contrib/msggen/msggen/schema.json b/contrib/msggen/msggen/schema.json
index 2757c55b..741c2b61 100644
--- a/contrib/msggen/msggen/schema.json
+++ b/contrib/msggen/msggen/schema.json
@@ -37680,7 +37680,7 @@
"rpc": "spliceout",
"title": "Command to splice funds out of a channel",
"description": [
- "`spliceout` is the command to move funds into a channel."
+ "`spliceout` is the command to move funds out of a channel."
],
"request": {
"required": [
@@ -37738,7 +37738,7 @@
}
},
"usage": [
- "`spliceout` is the command take funds from a channel. It takes `amount` funds from the specified `channel` and puts them somewhere.",
+ "`spliceout` is the command to take funds from a channel. It takes `amount` funds from the specified `channel` and puts them somewhere.",
"",
"The default destination is your onchain wallet.",
"By specifying the `destination` as a bitcoin address, the funds will be sent to the specified address",
diff --git a/doc/schemas/spliceout.json b/doc/schemas/spliceout.json
index 883ac803..5f84e6d4 100644
--- a/doc/schemas/spliceout.json
+++ b/doc/schemas/spliceout.json
@@ -6,7 +6,7 @@
"rpc": "spliceout",
"title": "Command to splice funds out of a channel",
"description": [
- "`spliceout` is the command to move funds into a channel."
+ "`spliceout` is the command to move funds out of a channel."
],
"request": {
"required": [
@@ -64,7 +64,7 @@
}
},
"usage": [
- "`spliceout` is the command take funds from a channel. It takes `amount` funds from the specified `channel` and puts them somewhere.",
+ "`spliceout` is the command to take funds from a channel. It takes `amount` funds from the specified `channel` and puts them somewhere.",
"",
"The default destination is your onchain wallet.",
"By specifying the `destination` as a bitcoin address, the funds will be sent to the specified address",
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.