From 3c2922a361087dd4afb6c11fdd224f5eb430a303 Mon Sep 17 00:00:00 2001 From: "Yukihiro \"Matz\" Matsumoto" Date: Wed, 25 Feb 2026 15:20:02 +0900 Subject: [PATCH] rom-method-table.md: fix prettier table formatting Co-authored-by: Claude --- doc/guides/rom-method-table.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/guides/rom-method-table.md b/doc/guides/rom-method-table.md index 51769180a..f15b9a29b 100644 --- a/doc/guides/rom-method-table.md +++ b/doc/guides/rom-method-table.md @@ -155,11 +155,11 @@ typedef struct mrb_mt_tbl { ### Flags -| Flag | Value | Description | -| ---------------- | -------- | ----------------------------------- | -| `MRB_MT_FUNC` | (1<<24) | C function (auto-set by macro) | -| `MRB_MT_PUBLIC` | 0 | Public visibility (default) | -| `MRB_MT_PRIVATE` | (1<<25) | Private visibility (in entry param) | +| Flag | Value | Description | +| ---------------- | ------- | ----------------------------------- | +| `MRB_MT_FUNC` | (1<<24) | C function (auto-set by macro) | +| `MRB_MT_PUBLIC` | 0 | Public visibility (default) | +| `MRB_MT_PRIVATE` | (1<<25) | Private visibility (in entry param) | The third parameter to `MRB_MT_ENTRY()` is an `MRB_ARGS_*()` expression optionally OR'd with `MRB_MT_PRIVATE`. The aspec value