mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-02 08:23:31 +02:00
Fix typo
This commit is contained in:
+2
-2
@@ -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"),
|
||||
|
||||
+2
-2
@@ -4,7 +4,7 @@ use anyhow::{Context, Result};
|
||||
|
||||
use crate::{
|
||||
info_file::{ExerciseInfo, InfoFile},
|
||||
DEVELOPING_OFFIFICAL_RUSTLINGS,
|
||||
DEVELOPING_OFFICIAL_RUSTLINGS,
|
||||
};
|
||||
|
||||
use super::check::{append_bins, bins_start_end_ind};
|
||||
@@ -30,7 +30,7 @@ fn update_cargo_toml(
|
||||
pub fn update() -> Result<()> {
|
||||
let info_file = InfoFile::parse()?;
|
||||
|
||||
if DEVELOPING_OFFIFICAL_RUSTLINGS {
|
||||
if DEVELOPING_OFFICIAL_RUSTLINGS {
|
||||
update_cargo_toml(
|
||||
&info_file.exercises,
|
||||
include_str!("../../dev/Cargo.toml"),
|
||||
|
||||
Reference in New Issue
Block a user