]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Fix value types in the rpn help message
authorterencehill <piuntn@gmail.com>
Wed, 17 Jul 2024 17:21:03 +0000 (19:21 +0200)
committerterencehill <piuntn@gmail.com>
Wed, 17 Jul 2024 17:21:03 +0000 (19:21 +0200)
qcsrc/common/command/rpn.qc

index 4327dc84d3b664aa2f84883c68be063fefb064c2..55b1a561daad3ccc0626a4906f35df40dd53f738 100644 (file)
@@ -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;