We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bae0772 commit 0de69b9Copy full SHA for 0de69b9
1 file changed
include/ruby/internal/scan_args.h
@@ -49,11 +49,11 @@
49
/** Same behaviour as rb_scan_args(). */
50
#define RB_SCAN_ARGS_PASS_CALLED_KEYWORDS 0
51
52
-/** The final argument should be a hash treated as keywords.*/
+/** The final argument must be a hash, which will be treated as keywords. */
53
#define RB_SCAN_ARGS_KEYWORDS 1
54
55
/**
56
- * Treat a final argument as keywords if it is a hash, and not as keywords
+ * Treat a final argument as keywords if it is a hash, and not as keywords
57
* otherwise.
58
*/
59
#define RB_SCAN_ARGS_LAST_HASH_KEYWORDS 3
@@ -68,7 +68,7 @@
68
/** Do not pass keywords. */
69
#define RB_NO_KEYWORDS 0
70
71
-/** Pass keywords, final argument should be a hash of keywords. */
+/** Pass keywords, final argument must be a hash of keywords. */
72
#define RB_PASS_KEYWORDS 1
73
74
0 commit comments