-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #53 from hexedtech/fix/panic-and-docs
fix: panic and docs
- Loading branch information
Showing
3 changed files
with
4 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,5 +85,4 @@ features = ["serialize"] | |
opt-level = 'z' | ||
lto = true | ||
codegen-units = 1 | ||
panic = 'abort' | ||
strip = 'symbols' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -83,16 +83,16 @@ | |
//! | ||
//! # connect first, api.code.mp is managed by hexed.technology | ||
//! client = codemp.connect(codemp.Config( | ||
//! username='[email protected]', | ||
//! password='dont-use-this-password' | ||
//! username = "[email protected]", | ||
//! password = "dont-use-this-password" | ||
//! )).wait() | ||
//! | ||
//! # create and join a workspace | ||
//! client.create_workspace("some-workspace").wait() | ||
//! workspace = client.attach_workspace("some-workspace").wait() | ||
//! | ||
//! # create a new buffer in this workspace and attach to it | ||
//! workspace.create("/my/file.txt").wait() | ||
//! workspace.create_buffer("/my/file.txt").wait() | ||
//! buffer = workspace.attach_buffer("/my/file.txt").wait() | ||
//! | ||
//! # write `hello!` at the beginning of this buffer | ||
|