summaryrefslogtreecommitdiffhomepage
path: root/examples/escape_formula_example.md
diff options
context:
space:
mode:
authorStefan <[email protected]>2023-04-13 12:31:03 +0200
committerStefan <[email protected]>2023-04-13 12:31:03 +0200
commit2ff1426388c66018ddd5b045a9c2e622d70aa622 (patch)
treee6c99e77fbe5277b83045ba155dcd751eca3bd80 /examples/escape_formula_example.md
parent030d89000d957b4682dc159d008b2fdd378e9e6e (diff)
downloadcaxlsx-2ff1426388c66018ddd5b045a9c2e622d70aa622.tar.gz
caxlsx-2ff1426388c66018ddd5b045a9c2e622d70aa622.zip
Fix typos regarding "escape formulas" in readme and example
Diffstat (limited to 'examples/escape_formula_example.md')
-rw-r--r--examples/escape_formula_example.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/escape_formula_example.md b/examples/escape_formula_example.md
index 9a8efc21..72015866 100644
--- a/examples/escape_formula_example.md
+++ b/examples/escape_formula_example.md
@@ -10,7 +10,7 @@ The following are possible:
| Global | `Axlsx.escape_formulas = true` | Affects worksheets created *after* setting. Does not affect existing worksheets. |
| Workbook | `workbook.escape_formulas = true` | Affects child worksheets added *after* setting. Does not affect existing child worksheets. |
| Worksheet | `workbook.add_worksheet(name: 'Name', escape_formulas: true)` | |
-| Worksheet | `worksheet.worksheet = true` | Affects child rows/cells added *after* setting. Does not affect existing child rows/cells. |
+| Worksheet | `worksheet.escape_formulas = true` | Affects child rows/cells added *after* setting. Does not affect existing child rows/cells. |
| Row | `worksheet.add_row(['=FOO()', '=BAR()], escape_formulas: [true, false])` | Can specify as either Boolean (all cells) or Array (one value per cell). |
| Row | `row.escape_formulas = [true, false]` | Changes the `escape_formulas` value on existing cells. Can use either Boolean or Array. |
| Cell | `cell.escape_formulas = true` | |