Unified spelling of "real-time" (vs. "real time")

(This spelling is consistent with the one provided by Merriam Webster for use an an adjective)
This commit is contained in:
Vincent Esche 2020-07-14 15:40:57 +02:00
parent bfb498e722
commit 3b48447934
4 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@ authors = [
"Per Lindgren <per.lindgren@ltu.se>", "Per Lindgren <per.lindgren@ltu.se>",
] ]
categories = ["concurrency", "embedded", "no-std"] categories = ["concurrency", "embedded", "no-std"]
description = "Real-Time Interrupt-driven Concurrency (RTIC): a concurrency framework for building real time systems" description = "Real-Time Interrupt-driven Concurrency (RTIC): a concurrency framework for building real-time systems"
documentation = "https://rtic.rs/" documentation = "https://rtic.rs/"
edition = "2018" edition = "2018"
keywords = ["arm", "cortex-m"] keywords = ["arm", "cortex-m"]

View file

@ -1,6 +1,6 @@
# Real-Time Interrupt-driven Concurrency # Real-Time Interrupt-driven Concurrency
A concurrency framework for building real time systems. A concurrency framework for building real-time systems.
Formerly known as Real-Time For the Masses. Formerly known as Real-Time For the Masses.

View file

@ -78,7 +78,7 @@ message. In most scenarios spawning errors are handled in one of two ways:
platform can deal with peak payload or if the processor needs to be replaced platform can deal with peak payload or if the processor needs to be replaced
with a faster one. with a faster one.
- Ignoring the result. In soft real time and non real time applications it may - Ignoring the result. In soft real-time and non real-time applications it may
be OK to occasionally lose data or fail to respond to some events during event be OK to occasionally lose data or fail to respond to some events during event
bursts. In those scenarios silently letting a `spawn` call fail may be bursts. In those scenarios silently letting a `spawn` call fail may be
acceptable. acceptable.

View file

@ -1,6 +1,6 @@
<h1 align="center">Real-Time Interrupt-driven Concurrency</h1> <h1 align="center">Real-Time Interrupt-driven Concurrency</h1>
<p align="center">A concurrency framework for building real time systems</p> <p align="center">A concurrency framework for building real-time systems</p>
# Preface # Preface