Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
patinthehat committed Mar 28, 2024
1 parent 1653c5e commit f214cdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ ray(['several', 'arguments'], 'can', {be: provided});

(await ray()).clearAll();

(await ray()).disable(); // disable sending data to Ray at runtime
ray().then(r => r.disable()); // disable sending data to Ray at runtime

(await ray()).xml('<one>11</one>'); // disabled, data not sent to Ray
ray().then(r => r.xml('<one>11</one>')); // disabled, data not sent to Ray
```

## Configuration
Expand Down

0 comments on commit f214cdc

Please sign in to comment.