Skip to content

Commit e27d887

Browse files
committed
cellsim help: apostrophes instead of backticks in fep-hyd description
Backticks in a bash heredoc get command-substituted, so "cellsim fep-freesolv" (in backticks) was being executed by bash and its output — nothing — replaced the literal text. Render was an empty line where the cross-reference should be. Swapped to single quotes ('cellsim fep-freesolv') — literal, no substitution. The other pre-existing backticks are inside "#" shell comments, which never reach the heredoc, so this is the only call site that needed fixing.
1 parent 2d28c7d commit e27d887

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/cellsim

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ usage: cellsim <subcommand> [args...]
8888
8989
fep-hyd alchemical hydration ΔG for a single SMILES —
9090
scaffold-only primitive; real hydration gate is
91-
`cellsim fep-freesolv`
91+
'cellsim fep-freesolv'
9292
-> src/fep/__init__.py
9393
9494
fep-freesolv FreeSolv 12-compound hydration accuracy gate

0 commit comments

Comments
 (0)