summaryrefslogtreecommitdiff
path: root/src/dev/check.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/dev/check.rs')
-rw-r--r--src/dev/check.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/check.rs b/src/dev/check.rs
index daf5bdb..9002eaf 100644
--- a/src/dev/check.rs
+++ b/src/dev/check.rs
@@ -3,7 +3,7 @@ use std::{cmp::Ordering, fs};
use crate::{
info_file::{ExerciseInfo, InfoFile},
- CURRENT_FORMAT_VERSION, DEVELOPING_OFFIFICAL_RUSTLINGS,
+ CURRENT_FORMAT_VERSION, DEVELOPING_OFFICIAL_RUSTLINGS,
};
pub fn bins_start_end_ind(cargo_toml: &str) -> Result<(usize, usize)> {
@@ -68,7 +68,7 @@ pub fn check() -> Result<()> {
Ordering::Equal => (),
}
- if DEVELOPING_OFFIFICAL_RUSTLINGS {
+ if DEVELOPING_OFFICIAL_RUSTLINGS {
check_cargo_toml(
&info_file.exercises,
include_str!("../../dev/Cargo.toml"),