From 7154bcd65f0c2bffe23870c364ea38d6955a850c Mon Sep 17 00:00:00 2001 From: linse Date: Sat, 16 Sep 2017 19:19:15 -0400 Subject: [PATCH] Reword. --- Technology | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Technology b/Technology index 6333778..4911471 100644 --- a/Technology +++ b/Technology @@ -126,7 +126,7 @@ OCaml code compiles to native code running in the OCaml runtime, which is as performant as compiled C++ code. The OCaml runtime is just used for memory management, and very small compared to a JVM or Python runtime. As an example, our TLS library has up to 85% of the bulk throughput of OpenSSL (using -AES128-CBC). The TLS handshake performance is equal with OpenSSL. +AES128-CBC). The TLS handshake performance is comparable with OpenSSL. ### Dependency management @@ -136,7 +136,6 @@ network stack, the random number generator. Each of the services has multiple implementations that are chosen based on the target. On UNIX, the sockets API of the host is used as networking stack. On a unikernel, the TCP/IP stack natively implemented in OCaml is being used. - A MirageOS developer does not need to reason about compilation targets, just about the module interface.