mirror of
https://github.com/hexedtech/codemp.git
synced 2024-11-21 23:04:49 +01:00
fix: add ghost main() function for nightly/beta rust doctests
This commit is contained in:
parent
6bf98d37e0
commit
d506d8cc74
1 changed files with 4 additions and 0 deletions
|
@ -19,6 +19,7 @@
|
||||||
//! a supported remote server and returns a [`Client`] handle to interact with it.
|
//! a supported remote server and returns a [`Client`] handle to interact with it.
|
||||||
//!
|
//!
|
||||||
//! ```no_run
|
//! ```no_run
|
||||||
|
//! # fn main() {}
|
||||||
//! # async fn main_fn() {
|
//! # async fn main_fn() {
|
||||||
//! let client = codemp::Client::connect(
|
//! let client = codemp::Client::connect(
|
||||||
//! codemp::api::Config::new(
|
//! codemp::api::Config::new(
|
||||||
|
@ -35,6 +36,7 @@
|
||||||
//! [`Client::join_workspace`] or create a new one with [`Client::create_workspace`].
|
//! [`Client::join_workspace`] or create a new one with [`Client::create_workspace`].
|
||||||
//!
|
//!
|
||||||
//! ```no_run
|
//! ```no_run
|
||||||
|
//! # fn main() {}
|
||||||
//! # async fn main_fn() {
|
//! # async fn main_fn() {
|
||||||
//! # let client = codemp::Client::connect(codemp::api::Config::new("", "")).await.unwrap();
|
//! # let client = codemp::Client::connect(codemp::api::Config::new("", "")).await.unwrap();
|
||||||
//! client.create_workspace("my-workspace").await.expect("failed to create workspace!");
|
//! client.create_workspace("my-workspace").await.expect("failed to create workspace!");
|
||||||
|
@ -46,6 +48,7 @@
|
||||||
//! and one or more [`buffer::Controller`] to send and receive [`api::TextChange`]s.
|
//! and one or more [`buffer::Controller`] to send and receive [`api::TextChange`]s.
|
||||||
//!
|
//!
|
||||||
//! ```no_run
|
//! ```no_run
|
||||||
|
//! # fn main() {}
|
||||||
//! # async fn main_fn() {
|
//! # async fn main_fn() {
|
||||||
//! # let client = codemp::Client::connect(codemp::api::Config::new("", "")).await.unwrap();
|
//! # let client = codemp::Client::connect(codemp::api::Config::new("", "")).await.unwrap();
|
||||||
//! # client.create_workspace("").await.unwrap();
|
//! # client.create_workspace("").await.unwrap();
|
||||||
|
@ -62,6 +65,7 @@
|
||||||
//! guaranteed to converge.
|
//! guaranteed to converge.
|
||||||
//!
|
//!
|
||||||
//! ```no_run
|
//! ```no_run
|
||||||
|
//! # fn main() {}
|
||||||
//! # async fn main_fn() {
|
//! # async fn main_fn() {
|
||||||
//! # let client = codemp::Client::connect(codemp::api::Config::new("", "")).await.unwrap();
|
//! # let client = codemp::Client::connect(codemp::api::Config::new("", "")).await.unwrap();
|
||||||
//! # client.create_workspace("").await.unwrap();
|
//! # client.create_workspace("").await.unwrap();
|
||||||
|
|
Loading…
Reference in a new issue