From 602a5b4374961dbcf7f3290053ab9b01f0622c67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Tj=C3=A4der?= Date: Thu, 11 Jun 2020 17:18:29 +0000 Subject: Rename RTFM to RTIC --- macros/src/check.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'macros/src/check.rs') diff --git a/macros/src/check.rs b/macros/src/check.rs index 0136370..7163444 100644 --- a/macros/src/check.rs +++ b/macros/src/check.rs @@ -1,7 +1,7 @@ use std::collections::HashSet; use proc_macro2::Span; -use rtfm_syntax::{ +use rtic_syntax::{ analyze::Analysis, ast::{App, CustomArg}, }; @@ -21,7 +21,7 @@ impl<'a> Extra<'a> { pub fn app<'a>(app: &'a App, analysis: &Analysis) -> parse::Result> { if cfg!(feature = "homogeneous") { - // this RTFM mode uses the same namespace for all cores so we need to check that the + // this RTIC mode uses the same namespace for all cores so we need to check that the // identifiers used for each core `#[init]` and `#[idle]` functions don't collide let mut seen = HashSet::new(); @@ -219,7 +219,7 @@ pub fn app<'a>(app: &'a App, analysis: &Analysis) -> parse::Result> { } else { Err(parse::Error::new( Span::call_site(), - "a `device` argument must be specified in `#[rtfm::app]`", + "a `device` argument must be specified in `#[rtic::app]`", )) } } -- cgit v1.2.3