aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenauxg <19689618+Henauxg@users.noreply.github.com>2023-07-11 19:57:18 +0200
committerHenauxg <19689618+Henauxg@users.noreply.github.com>2023-07-11 19:57:18 +0200
commit15052f8b421e100703ac31f70c9a1830644a578a (patch)
treea44825dc10adca1d923536411944ed30a3064445
parenta7fa55a732a460c23f1b6fed5575015999ccaed3 (diff)
[readme] Update quickstart usage of add_plugins
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 7457c9b..da4d01f 100644
--- a/README.md
+++ b/README.md
@@ -84,7 +84,7 @@ This is a bird-eye view of the features/tasks that will probably be worked on ne
```rust
App::new()
// ...
- .add_plugin(QuinnetClientPlugin::default())
+ .add_plugins(QuinnetClientPlugin::default())
// ...
.run();
```
@@ -132,7 +132,7 @@ fn handle_server_messages(
```rust
App::new()
/*...*/
- .add_plugin(QuinnetServerPlugin::default())
+ .add_plugins(QuinnetServerPlugin::default())
/*...*/
.run();
```