diff --git a/README.md b/README.md index 9149b50..921b598 100644 --- a/README.md +++ b/README.md @@ -9,5 +9,4 @@ This library provides a high-level Text-To-Speech (TTS) interface supporting var * MacOS * AppKit on MacOS 10.13 and below * AVFoundation on MacOS 10.14 and, eventually, iDevices -* WebAssembly - +* WebAssembly \ No newline at end of file diff --git a/src/lib.rs b/src/lib.rs index b1e67b3..d5d8210 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,12 +1,15 @@ /*! * a Text-To-Speech (TTS) library providing high-level interfaces to a variety of backends. * Currently supported backends are: - * * [Speech Dispatcher](https://freebsoft.org/speechd) (Linux) - * * Windows screen readers and SAPI via [Tolk](https://github.com/dkager/tolk/) - * * Windows WinRT - * * MacOS `NSSpeechSynthesizer` + * * Windows + * * Screen readers/SAPI via Tolk + * * WinRT + * * Linux via [Speech Dispatcher](https://freebsoft.org/speechd) + * * MacOS + * * AppKit on MacOS 10.13 and below + * * AVFoundation on MacOS 10.14 and, eventually, iDevices * * WebAssembly -*/ + */ #[cfg(target_os = "macos")] use std::{boxed::Box, ffi::CStr};