From a67e736d4ad65b0c6940a09f8274fd8b60b98d1b Mon Sep 17 00:00:00 2001 From: Oleg Dovger Date: Sun, 14 Nov 2021 20:05:36 +0300 Subject: [PATCH] Update ARCHITECTURE.md (#2889) --- ARCHITECTURE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md index 9acdb898e..7075d277b 100644 --- a/ARCHITECTURE.md +++ b/ARCHITECTURE.md @@ -8,7 +8,7 @@ Tauri is a polyglot and generic toolkit that is very composable and allows engin Tauri apps can have custom menus and have tray-type interfaces. They can be updated, and are managed by the user's operating system as expected. They are very small, because they use the OS's webview. They do not ship a runtime, since the final binary is compiled from Rust. This makes the reversing of Tauri apps not a trivial task. ## What Tauri is NOT -- Tauri is not a lightweight kernel wrapper...instead it directly uses [WRY](https://github.com/tauri-apps/tauri/blob/dev/ARCHITECTURE.md#wry) and [TAO](https://github.com/tauri-apps/tauri/blob/dev/ARCHITECTURE.md#tao) to do the heavy-lifting in making system calls to the OS. +- Tauri is not a lightweight kernel wrapper...instead it directly uses [WRY](#wry) and [TAO](#tao) to do the heavy-lifting in making system calls to the OS. - Tauri is not a VM or virtualized environment...instead it is an application toolkit that allows making Webview OS applications. ## Major Components