diff options
author | 2020-09-09 15:12:54 +0200 | |
---|---|---|
committer | 2020-09-09 15:12:54 +0200 | |
commit | f39e608d7b9dd093c6f1e9b853cc9f8102f15542 (patch) | |
tree | b0fd79464874a9822612fc6c5db854c3b42ed504 /web/src/lib.rs | |
parent | 0724fb8ebf7c60b396843d021b949cc9061b4c3e (diff) | |
download | iced-f39e608d7b9dd093c6f1e9b853cc9f8102f15542.tar.gz iced-f39e608d7b9dd093c6f1e9b853cc9f8102f15542.tar.bz2 iced-f39e608d7b9dd093c6f1e9b853cc9f8102f15542.zip |
Format code
Diffstat (limited to 'web/src/lib.rs')
-rw-r--r-- | web/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/src/lib.rs b/web/src/lib.rs index 79fa86e6..0776e9d5 100644 --- a/web/src/lib.rs +++ b/web/src/lib.rs @@ -262,12 +262,12 @@ where } /// An interactive embedded web application. -/// +/// /// This trait is the main entrypoint of Iced. Once implemented, you can run /// your GUI application by simply calling [`run`](#method.run). It will either /// take control of the `<body>' or of an HTML element of the document specified /// by `container_id`. -/// +/// /// An [`Embedded`](trait.Embedded.html) can execute asynchronous actions /// by returning a [`Command`](struct.Command.html) in some of its methods. pub trait Embedded { |