diff options
| author | mo8it <mo8it@proton.me> | 2025-05-17 21:25:19 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2025-05-17 21:25:19 +0200 |
| commit | a51d6f1309b986c270d781b08f6949f29806b18a (patch) | |
| tree | 6997dec2af185002920f26a1f3aa87746d3e24a8 /src/app_state.rs | |
| parent | f6a657a0c3628d75dae7cd1d3a822dc19d379f15 (diff) | |
third-party/custom -> community
Diffstat (limited to 'src/app_state.rs')
| -rw-r--r-- | src/app_state.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/app_state.rs b/src/app_state.rs index d1c45d4..f3f3481 100644 --- a/src/app_state.rs +++ b/src/app_state.rs @@ -315,7 +315,7 @@ impl AppState { } // Official exercises: Dump the original file from the binary. - // Third-party exercises: Reset the exercise file with `git stash`. + // Community exercises: Reset the exercise file with `git stash`. fn reset(&self, exercise_ind: usize, path: &str) -> Result<()> { if self.official_exercises { return EMBEDDED_FILES @@ -385,7 +385,7 @@ impl AppState { } /// Official exercises: Dump the solution file from the binary and return its path. - /// Third-party exercises: Check if a solution file exists and return its path in that case. + /// Community exercises: Check if a solution file exists and return its path in that case. pub fn current_solution_path(&self) -> Result<Option<String>> { if cfg!(debug_assertions) { return Ok(None); |
