diff options
author | Henauxg <19689618+Henauxg@users.noreply.github.com> | 2023-07-11 19:57:18 +0200 |
---|---|---|
committer | Henauxg <19689618+Henauxg@users.noreply.github.com> | 2023-07-11 19:57:18 +0200 |
commit | 15052f8b421e100703ac31f70c9a1830644a578a (patch) | |
tree | a44825dc10adca1d923536411944ed30a3064445 | |
parent | a7fa55a732a460c23f1b6fed5575015999ccaed3 (diff) |
[readme] Update quickstart usage of add_plugins
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(); ``` |