From: terencehill Date: Wed, 17 Jul 2024 17:21:03 +0000 (+0200) Subject: Fix value types in the rpn help message X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=181ea07beab0c4e0e17c6c7219d71067798fcab3;p=xonotic%2Fxonotic-data.pk3dir.git Fix value types in the rpn help message --- diff --git a/qcsrc/common/command/rpn.qc b/qcsrc/common/command/rpn.qc index 4327dc84d..55b1a561d 100644 --- a/qcsrc/common/command/rpn.qc +++ b/qcsrc/common/command/rpn.qc @@ -588,22 +588,22 @@ LABEL(skip_difference) LOG_HELP(" s s union|intersection|difference -> s : set operations"); LOG_HELP(" s shuffle -------------------------> s : randomly arrange elements"); LOG_HELP(" /key /value put -------------------> : set a database key"); - LOG_HELP(" /key get --------------------------> s : get a database value"); + LOG_HELP(" /key get --------------------------> x : get a database value"); LOG_HELP(" x dbpush --------------------------> : pushes the top onto the database"); LOG_HELP(" dbpop|dbget -----------------------> x : removes/reads DB's top"); LOG_HELP(" dblen|dbat ------------------------> f : gets the DB's size/cursor pos"); LOG_HELP(" dbclr -----------------------------> : clear the DB"); - LOG_HELP(" s dbsave|dbload--------------------> : save/load the DB to/from a file"); + LOG_HELP(" x dbsave|dbload--------------------> : save/load the DB to/from a file"); LOG_HELP(" x dbins ---------------------------> : moves the top into the DB"); LOG_HELP(" dbext|dbread ----------------------> x : extract/get from the DB's cursor"); LOG_HELP(" f dbmov|dbgoto --------------------> : move or set the DB's cursor"); - LOG_HELP(" s localtime -----------------------> s : formats the current local time"); - LOG_HELP(" s gmtime --------------------------> s : formats the current UTC time"); + LOG_HELP(" x localtime -----------------------> x : formats the current local time"); + LOG_HELP(" x gmtime --------------------------> x : formats the current UTC time"); LOG_HELP(" time ------------------------------> f : seconds since VM start"); - LOG_HELP(" s /MD4 digest ---------------------> s : MD4 digest"); - LOG_HELP(" s /SHA256 digest ------------------> s : SHA256 digest"); - LOG_HELP(" s /formatstring sprintf1s ---------> s : sprintf with 1 string (pad, cut)"); - LOG_HELP(" s eval ----------------------------> : does something eval"); + LOG_HELP(" x /MD4 digest ---------------------> x : MD4 digest"); + LOG_HELP(" x /SHA256 digest ------------------> x : SHA256 digest"); + LOG_HELP(" x /formatstring sprintf1s ---------> x : sprintf with 1 string (pad, cut)"); + LOG_HELP(" x eval ----------------------------> : does something eval"); LOG_HELP(" Set operations operate on 'such''strings'."); LOG_HELP(" Unknown tokens insert their cvar value."); return;