From 0f13aabceb8d9c2b555fbb7ba09e48e6ce23ef0b Mon Sep 17 00:00:00 2001 From: Eugene Gershnik Date: Tue, 7 Dec 2021 04:52:58 -0800 Subject: [PATCH] Doc typos --- doc/Android.md | 2 +- doc/Linux.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Android.md b/doc/Android.md index f316823..f4dcc55 100644 --- a/doc/Android.md +++ b/doc/Android.md @@ -1,4 +1,4 @@ -## Windows platform conversions +## Android platform conversions Currently there is only one storage type available on Android. diff --git a/doc/Linux.md b/doc/Linux.md index e4c634c..9875c78 100644 --- a/doc/Linux.md +++ b/doc/Linux.md @@ -1,4 +1,4 @@ -## Windows platform conversions +## Linux platform conversions The only storage type available on Linux is "generic Unix". It is meant to interoperate with Posix-style APIs that deal with `char *`. `sys_string` logically stores its content as a sequence of `char`s in UTF-8 encoding. Conversions **from** `const char *` always incur copying and sometimes memory allocation (`sys_string` does small string optimization similar to `std::string`).