Skip to content

Commit

Permalink
跟随上游 PR #427 更新
Browse files Browse the repository at this point in the history
  • Loading branch information
PureWhiteWu committed Oct 17, 2023
1 parent e3dbee7 commit 974939e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/exception-safety.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ impl<'a, T> Hole<'a, T> {
fn removed(&self) -> &T { self.elt.as_ref().unwrap() }
unsafe fn get(&self, index: usize) -> &T { &self.data[index] }
fn get(&self, index: usize) -> &T { &self.data[index] }
unsafe fn move_to(&mut self, index: usize) {
let index_ptr: *const _ = &self.data[index];
Expand Down
2 changes: 1 addition & 1 deletion src/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
>
> 如果大家对于翻译有更好的建议或者想法,欢迎直接 PR~
>
> 目前翻译基于 commit:ddfa4214487686e91b21aa29afb972c08a8f0d5b,基于时间:2023/9/25
> 目前翻译基于 commit:1842257814919fa62e81bdecd5e8f95be2839dbb,基于时间:2023/10/17
>
> Q:为什么不基于之前已有的中文版进行改进?
>
Expand Down

0 comments on commit 974939e

Please sign in to comment.