Skip to content

Commit

Permalink
Update issue template & docs.
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-Janggun committed Feb 27, 2024
1 parent b4d413b commit 7c5e85e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ name: Question
about: Ask questions in this format.
title: "[Question] (SUMMARIZE YOUR QUESTION AS CLEARLY AS POSSIBLE)"
labels: question
assignees: ''
assignees: 'kingdoctor123'
---
<!---
When you're asking a question, please make sure:
- [ ] You clarify your questions as clear as possible. If possible, please make it a yes/no question. If possible, please summarize your question in one sentence at the beginning of an issue.
- You clarify your questions as clear as possible. If possible, please make it a yes/no question. If possible, please summarize your question in one sentence at the beginning of an issue.
- If you're asking a question on concepts:
+ [ ] You read the corresponding sections of the slide.
+ [ ] You searched for the concepts using search engines and Wikipedia.
+ You read the corresponding sections of the slide.
+ You searched for the concepts using search engines and Wikipedia.
- If you're asking a question on Rust programming:
+ [ ] You searched for error messages or any relevant logs using search engines.
+ [ ] Your problem is reproducible in the provided server. Please describe how others can reproduce your problem.
+ [ ] You paste code, if any, in text with [syntax hightlight](https://docs.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks). No images.
+ [ ] You paste code, if any, that is minimized as much as possible. Your code should be immediately relevant to your question.
+ You searched for error messages or any relevant logs using search engines.
+ Your problem is reproducible in the provided server. Please describe how others can reproduce your problem.
+ You paste code, if any, in text with [syntax hightlight](https://docs.github.com/en/github/writing-on-github/creating-and-highlighting-code-blocks). No images.
+ You paste code, if any, that is minimized as much as possible. Your code should be immediately relevant to your question.
-->

Expand Down
4 changes: 2 additions & 2 deletions src/lockfree/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ where
///
/// # Panics
///
/// Panics if the cursor's current node is a null.
/// Panics if the current node is null.
#[inline]
pub fn lookup(&self) -> &'g V {
&unsafe { self.curr.as_ref() }.unwrap().value
Expand Down Expand Up @@ -245,7 +245,7 @@ where
///
/// # Panics
///
/// Panics if the cursor's current value is a null.
/// Panics if the current node is null.
#[inline]
pub fn delete(&mut self, guard: &'g Guard) -> Result<&'g V, ()> {
let curr_node = unsafe { self.curr.as_ref() }.unwrap();
Expand Down

0 comments on commit 7c5e85e

Please sign in to comment.